2023-12-06T03:34:35.275 INFO:root:teuthology version: 0.0.1.dev214+gf2de108 2023-12-06T03:34:35.275 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695 --name yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi --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} --owner scheduled_yuriw@teuthology -- /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/orig.config.yaml 2023-12-06T03:34:35.311 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-06T03:34:35.396 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695 branch: wip-yuri6-testing-2023-12-05-0753-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: '7478695' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-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-yuri6-testing-2023-12-05-0753-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: d03fca4f35d43f61b4679936aef7bd2f01cced0b ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d03fca4f35d43f61b4679936aef7bd2f01cced0b selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-yuri6-testing-2023-12-05-0753-pacific sha1: d03fca4f35d43f61b4679936aef7bd2f01cced0b owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 5202 sha1: d03fca4f35d43f61b4679936aef7bd2f01cced0b sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-yuri6-testing-2023-12-05-0753-pacific suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_d03fca4f35d43f61b4679936aef7bd2f01cced0b/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: d03fca4f35d43f61b4679936aef7bd2f01cced0b targets: smithi017.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBF2QeUCvS6HRExqvNFwj8Z1id/I9Fem+3RCzrXSpVAxtaOnvdlglHOPZxhK1QgPdIgdJKVgezDtqhpuJGfYqoKI= smithi169.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCa8AC+wUp+lngiSuyTyY7Z9FQoPq50V2t8Wgx4HtOvEvMFQNcNUZ9fKX77TVUgPHLpX+i+y9wSjMI9r9CPD7GQ= 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: main teuthology_sha1: f2de108beb0a6dde7f3e6c96039071828a1f6269 timestamp: 2023-12-05_19:00:15 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-12-06T03:34:35.396 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_d03fca4f35d43f61b4679936aef7bd2f01cced0b/qa; will attempt to use it 2023-12-06T03:34:35.397 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_d03fca4f35d43f61b4679936aef7bd2f01cced0b/qa/tasks 2023-12-06T03:34:35.397 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-12-06T03:34:35.399 INFO:teuthology.task.internal:Checking packages... 2023-12-06T03:34:35.430 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'd03fca4f35d43f61b4679936aef7bd2f01cced0b' 2023-12-06T03:34:35.431 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-12-06T03:34:35.431 INFO:teuthology.packaging:ref: None 2023-12-06T03:34:35.431 INFO:teuthology.packaging:tag: None 2023-12-06T03:34:35.431 INFO:teuthology.packaging:branch: wip-yuri6-testing-2023-12-05-0753-pacific 2023-12-06T03:34:35.431 INFO:teuthology.packaging:sha1: d03fca4f35d43f61b4679936aef7bd2f01cced0b 2023-12-06T03:34:35.432 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=wip-yuri6-testing-2023-12-05-0753-pacific 2023-12-06T03:34:35.579 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-335.gd03fca4f 2023-12-06T03:34:35.579 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-12-06T03:34:35.587 INFO:teuthology.task.internal:no buildpackages task found 2023-12-06T03:34:35.587 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-12-06T03:34:35.600 INFO:teuthology.task.internal:Saving configuration 2023-12-06T03:34:35.615 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-12-06T03:34:35.625 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-06T03:34:35.652 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi017.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695', '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-12-06 03:29:18.481611', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBF2QeUCvS6HRExqvNFwj8Z1id/I9Fem+3RCzrXSpVAxtaOnvdlglHOPZxhK1QgPdIgdJKVgezDtqhpuJGfYqoKI='} 2023-12-06T03:34:35.675 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi169.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695', '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-12-06 03:29:18.483104', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCa8AC+wUp+lngiSuyTyY7Z9FQoPq50V2t8Wgx4HtOvEvMFQNcNUZ9fKX77TVUgPHLpX+i+y9wSjMI9r9CPD7GQ='} 2023-12-06T03:34:35.675 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-12-06T03:34:35.687 INFO:teuthology.task.internal:roles: ubuntu@smithi017.front.sepia.ceph.com - ['host.a', 'client.0'] 2023-12-06T03:34:35.688 INFO:teuthology.task.internal:roles: ubuntu@smithi169.front.sepia.ceph.com - ['host.b', 'client.1'] 2023-12-06T03:34:35.688 INFO:teuthology.run_tasks:Running task console_log... 2023-12-06T03:34:35.788 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f0fad69bf70>, signals=[15]) 2023-12-06T03:34:35.789 INFO:teuthology.run_tasks:Running task internal.connect... 2023-12-06T03:34:35.800 INFO:teuthology.task.internal:Opening connections... 2023-12-06T03:34:35.800 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:34:35.803 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi017.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:34:35.875 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi169.front.sepia.ceph.com 2023-12-06T03:34:35.876 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:34:35.942 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-12-06T03:34:35.957 DEBUG:teuthology.orchestra.run.smithi017:> uname -m 2023-12-06T03:34:35.976 INFO:teuthology.orchestra.run.smithi017.stdout:x86_64 2023-12-06T03:34:35.976 DEBUG:teuthology.orchestra.run.smithi017:> cat /etc/os-release 2023-12-06T03:34:36.033 INFO:teuthology.orchestra.run.smithi017.stdout:NAME="Red Hat Enterprise Linux" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:VERSION="8.4 (Ootpa)" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:ID="rhel" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:ID_LIKE="fedora" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:VERSION_ID="8.4" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:PLATFORM_ID="platform:el8" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.4 (Ootpa)" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:ANSI_COLOR="0;31" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8.4:GA" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:HOME_URL="https://www.redhat.com/" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-06T03:34:36.034 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:34:36.035 INFO:teuthology.orchestra.run.smithi017.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-06T03:34:36.035 INFO:teuthology.orchestra.run.smithi017.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.4 2023-12-06T03:34:36.035 INFO:teuthology.orchestra.run.smithi017.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-06T03:34:36.035 INFO:teuthology.orchestra.run.smithi017.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.4" 2023-12-06T03:34:36.037 INFO:teuthology.lock.ops:Updating smithi017.front.sepia.ceph.com on lock server 2023-12-06T03:34:36.063 DEBUG:teuthology.orchestra.run.smithi169:> uname -m 2023-12-06T03:34:36.081 INFO:teuthology.orchestra.run.smithi169.stdout:x86_64 2023-12-06T03:34:36.081 DEBUG:teuthology.orchestra.run.smithi169:> cat /etc/os-release 2023-12-06T03:34:36.137 INFO:teuthology.orchestra.run.smithi169.stdout:NAME="Red Hat Enterprise Linux" 2023-12-06T03:34:36.137 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION="8.4 (Ootpa)" 2023-12-06T03:34:36.137 INFO:teuthology.orchestra.run.smithi169.stdout:ID="rhel" 2023-12-06T03:34:36.137 INFO:teuthology.orchestra.run.smithi169.stdout:ID_LIKE="fedora" 2023-12-06T03:34:36.137 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION_ID="8.4" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:PLATFORM_ID="platform:el8" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.4 (Ootpa)" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:ANSI_COLOR="0;31" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8.4:GA" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:HOME_URL="https://www.redhat.com/" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.4 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-06T03:34:36.138 INFO:teuthology.orchestra.run.smithi169.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.4" 2023-12-06T03:34:36.138 INFO:teuthology.lock.ops:Updating smithi169.front.sepia.ceph.com on lock server 2023-12-06T03:34:36.162 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-12-06T03:34:36.173 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-12-06T03:34:36.181 INFO:teuthology.task.internal:Checking for old test directory... 2023-12-06T03:34:36.181 DEBUG:teuthology.orchestra.run.smithi017:> test '!' -e /home/ubuntu/cephtest 2023-12-06T03:34:36.184 DEBUG:teuthology.orchestra.run.smithi169:> test '!' -e /home/ubuntu/cephtest 2023-12-06T03:34:36.199 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-12-06T03:34:36.207 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-12-06T03:34:36.207 DEBUG:teuthology.orchestra.run.smithi017:> test -z $(ls -A /var/lib/ceph) 2023-12-06T03:34:36.243 DEBUG:teuthology.orchestra.run.smithi169:> test -z $(ls -A /var/lib/ceph) 2023-12-06T03:34:36.258 INFO:teuthology.orchestra.run.smithi017.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2023-12-06T03:34:36.260 INFO:teuthology.orchestra.run.smithi169.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2023-12-06T03:34:36.261 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-12-06T03:34:36.313 INFO:teuthology.run_tasks:Running task kernel... 2023-12-06T03:34:36.327 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-12-06T03:34:36.328 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-12-06T03:34:36.328 DEBUG:teuthology.orchestra.run.smithi017:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-06T03:34:36.328 DEBUG:teuthology.orchestra.run.smithi169:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-06T03:34:36.344 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T03:34:36.345 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2023-12-06T03:34:36.345 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T03:34:36.346 DEBUG:teuthology.orchestra.run.smithi017:> uname -r 2023-12-06T03:34:36.402 INFO:teuthology.orchestra.run.smithi169.stdout:4.18.0-305.25.1.el8_4.x86_64 2023-12-06T03:34:36.402 INFO:teuthology.task.kernel:Running kernel on smithi169: 4.18.0-305.25.1.el8_4.x86_64 2023-12-06T03:34:36.402 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum install -y kernel 2023-12-06T03:34:36.404 INFO:teuthology.orchestra.run.smithi017.stdout:4.18.0-305.25.1.el8_4.x86_64 2023-12-06T03:34:36.404 INFO:teuthology.task.kernel:Running kernel on smithi017: 4.18.0-305.25.1.el8_4.x86_64 2023-12-06T03:34:36.404 DEBUG:teuthology.orchestra.run.smithi017:> sudo yum install -y kernel 2023-12-06T03:34:37.828 INFO:teuthology.orchestra.run.smithi169.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:37.829 INFO:teuthology.orchestra.run.smithi169.stdout:Unable to read consumer identity 2023-12-06T03:34:37.870 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:37.871 INFO:teuthology.orchestra.run.smithi017.stdout:Unable to read consumer identity 2023-12-06T03:34:39.234 INFO:teuthology.orchestra.run.smithi017.stdout:Copr repo for python3-asyncssh owned by ceph 21 kB/s | 3.5 kB 00:00 2023-12-06T03:34:39.249 INFO:teuthology.orchestra.run.smithi169.stdout:Copr repo for python3-asyncssh owned by ceph 19 kB/s | 3.5 kB 00:00 2023-12-06T03:34:39.844 INFO:teuthology.orchestra.run.smithi017.stdout:Extra Packages for Enterprise Linux 28 MB/s | 16 MB 00:00 2023-12-06T03:34:40.013 INFO:teuthology.orchestra.run.smithi169.stdout:Extra Packages for Enterprise Linux 22 MB/s | 16 MB 00:00 2023-12-06T03:34:43.309 INFO:teuthology.orchestra.run.smithi017.stdout:lab-extras 4.4 MB/s | 24 kB 00:00 2023-12-06T03:34:43.421 INFO:teuthology.orchestra.run.smithi169.stdout:lab-extras 4.5 MB/s | 24 kB 00:00 2023-12-06T03:34:44.122 INFO:teuthology.orchestra.run.smithi017.stdout:Package kernel-4.18.0-80.el8.x86_64 is already installed. 2023-12-06T03:34:44.122 INFO:teuthology.orchestra.run.smithi017.stdout:Package kernel-4.18.0-425.3.1.el8.x86_64 is already installed. 2023-12-06T03:34:44.122 INFO:teuthology.orchestra.run.smithi017.stdout:Package kernel-4.18.0-305.25.1.el8_4.x86_64 is already installed. 2023-12-06T03:34:44.189 INFO:teuthology.orchestra.run.smithi169.stdout:Package kernel-4.18.0-80.el8.x86_64 is already installed. 2023-12-06T03:34:44.189 INFO:teuthology.orchestra.run.smithi169.stdout:Package kernel-4.18.0-425.3.1.el8.x86_64 is already installed. 2023-12-06T03:34:44.189 INFO:teuthology.orchestra.run.smithi169.stdout:Package kernel-4.18.0-305.25.1.el8_4.x86_64 is already installed. 2023-12-06T03:34:44.277 INFO:teuthology.orchestra.run.smithi017.stdout:Dependencies resolved. 2023-12-06T03:34:44.278 INFO:teuthology.orchestra.run.smithi017.stdout:Nothing to do. 2023-12-06T03:34:44.278 INFO:teuthology.orchestra.run.smithi017.stdout:Complete! 2023-12-06T03:34:44.344 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2023-12-06T03:34:44.345 INFO:teuthology.orchestra.run.smithi169.stdout:Nothing to do. 2023-12-06T03:34:44.345 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2023-12-06T03:34:44.393 DEBUG:teuthology.orchestra.run.smithi017:> echo no | sudo yum reinstall kernel || true 2023-12-06T03:34:44.473 DEBUG:teuthology.orchestra.run.smithi169:> echo no | sudo yum reinstall kernel || true 2023-12-06T03:34:44.760 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:44.760 INFO:teuthology.orchestra.run.smithi017.stdout:Unable to read consumer identity 2023-12-06T03:34:44.818 INFO:teuthology.orchestra.run.smithi169.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:44.818 INFO:teuthology.orchestra.run.smithi169.stdout:Unable to read consumer identity 2023-12-06T03:34:45.068 INFO:teuthology.orchestra.run.smithi017.stdout:Last metadata expiration check: 0:00:02 ago on Wed 06 Dec 2023 03:34:43 AM UTC. 2023-12-06T03:34:45.115 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:02 ago on Wed 06 Dec 2023 03:34:43 AM UTC. 2023-12-06T03:34:45.213 INFO:teuthology.orchestra.run.smithi017.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-12-06T03:34:45.213 INFO:teuthology.orchestra.run.smithi017.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-12-06T03:34:45.213 INFO:teuthology.orchestra.run.smithi017.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-12-06T03:34:45.242 INFO:teuthology.orchestra.run.smithi017.stderr:Error: No packages marked for reinstall. 2023-12-06T03:34:45.256 INFO:teuthology.orchestra.run.smithi169.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-12-06T03:34:45.256 INFO:teuthology.orchestra.run.smithi169.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-12-06T03:34:45.256 INFO:teuthology.orchestra.run.smithi169.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-12-06T03:34:45.284 INFO:teuthology.orchestra.run.smithi169.stderr:Error: No packages marked for reinstall. 2023-12-06T03:34:45.293 DEBUG:teuthology.orchestra.run.smithi017:> sudo yum reinstall -y kernel || true 2023-12-06T03:34:45.334 DEBUG:teuthology.orchestra.run.smithi169:> sudo yum reinstall -y kernel || true 2023-12-06T03:34:45.657 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:45.657 INFO:teuthology.orchestra.run.smithi017.stdout:Unable to read consumer identity 2023-12-06T03:34:45.678 INFO:teuthology.orchestra.run.smithi169.stdout:Updating Subscription Management repositories. 2023-12-06T03:34:45.678 INFO:teuthology.orchestra.run.smithi169.stdout:Unable to read consumer identity 2023-12-06T03:34:45.954 INFO:teuthology.orchestra.run.smithi017.stdout:Last metadata expiration check: 0:00:02 ago on Wed 06 Dec 2023 03:34:43 AM UTC. 2023-12-06T03:34:45.969 INFO:teuthology.orchestra.run.smithi169.stdout:Last metadata expiration check: 0:00:02 ago on Wed 06 Dec 2023 03:34:43 AM UTC. 2023-12-06T03:34:46.104 INFO:teuthology.orchestra.run.smithi017.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-12-06T03:34:46.104 INFO:teuthology.orchestra.run.smithi017.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-12-06T03:34:46.104 INFO:teuthology.orchestra.run.smithi017.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-12-06T03:34:46.113 INFO:teuthology.orchestra.run.smithi169.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-12-06T03:34:46.113 INFO:teuthology.orchestra.run.smithi169.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-12-06T03:34:46.113 INFO:teuthology.orchestra.run.smithi169.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-12-06T03:34:46.119 INFO:teuthology.orchestra.run.smithi017.stderr:Error: No packages marked for reinstall. 2023-12-06T03:34:46.128 INFO:teuthology.orchestra.run.smithi169.stderr:Error: No packages marked for reinstall. 2023-12-06T03:34:46.169 DEBUG:teuthology.orchestra.run.smithi017:> rpm -q kernel | sort -rV | head -n 1 2023-12-06T03:34:46.178 DEBUG:teuthology.orchestra.run.smithi169:> rpm -q kernel | sort -rV | head -n 1 2023-12-06T03:34:46.300 INFO:teuthology.orchestra.run.smithi017.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.300 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.300 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-12-06T03:34:46.300 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-12-06T03:34:46.300 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-12-06T03:34:46.301 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2023-12-06T03:34:46.301 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi017.front.sepia.ceph.com, path=None, version=distro) 2023-12-06T03:34:46.301 DEBUG:teuthology.orchestra.run.smithi017:> rpm -q kernel | sort -rV | head -n 1 2023-12-06T03:34:46.302 INFO:teuthology.orchestra.run.smithi169.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.303 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.303 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-12-06T03:34:46.303 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-12-06T03:34:46.303 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-12-06T03:34:46.303 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2023-12-06T03:34:46.303 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi169.front.sepia.ceph.com, path=None, version=distro) 2023-12-06T03:34:46.303 DEBUG:teuthology.orchestra.run.smithi169:> rpm -q kernel | sort -rV | head -n 1 2023-12-06T03:34:46.429 INFO:teuthology.orchestra.run.smithi169.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.429 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.429 DEBUG:teuthology.orchestra.run.smithi169:> sudo rpm -qi grub2-tools 2023-12-06T03:34:46.430 INFO:teuthology.orchestra.run.smithi017.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.431 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.431 DEBUG:teuthology.orchestra.run.smithi017:> sudo rpm -qi grub2-tools 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Name : grub2-tools 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Epoch : 1 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Version : 2.02 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Release : 99.el8_4.1 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Architecture: x86_64 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Install Date: Wed 21 Dec 2022 01:02:32 PM UTC 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Group : System Environment/Base 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:Size : 9264631 2023-12-06T03:34:46.456 INFO:teuthology.orchestra.run.smithi169.stdout:License : GPLv3+ 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Signature : RSA/SHA256, Thu 09 Sep 2021 09:41:55 AM UTC, Key ID 199e2f91fd431d51 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Source RPM : grub2-2.02-99.el8_4.1.src.rpm 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Build Date : Tue 18 May 2021 07:46:34 AM UTC 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Build Host : x86-vm-07.build.eng.bos.redhat.com 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Relocations : (not relocatable) 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Packager : Red Hat, Inc. 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Vendor : Red Hat, Inc. 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:URL : http://www.gnu.org/software/grub/ 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Summary : Support tools for GRUB. 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:Description : 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:customizable bootloader with modular architecture. It supports a rich 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:variety of kernel formats, file systems, computer architectures and 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout:hardware devices. 2023-12-06T03:34:46.457 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:34:46.458 INFO:teuthology.orchestra.run.smithi169.stdout:This subpackage provides tools for support of all platforms. 2023-12-06T03:34:46.458 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-12-06T03:34:46.458 INFO:teuthology.task.kernel:Updating grub on smithi169 to boot 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.459 DEBUG:teuthology.orchestra.run.smithi169:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Name : grub2-tools 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Epoch : 1 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Version : 2.02 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Release : 99.el8_4.1 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Architecture: x86_64 2023-12-06T03:34:46.459 INFO:teuthology.orchestra.run.smithi017.stdout:Install Date: Wed 21 Dec 2022 01:02:32 PM UTC 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Group : System Environment/Base 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Size : 9264631 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:License : GPLv3+ 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Signature : RSA/SHA256, Thu 09 Sep 2021 09:41:55 AM UTC, Key ID 199e2f91fd431d51 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Source RPM : grub2-2.02-99.el8_4.1.src.rpm 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Build Date : Tue 18 May 2021 07:46:34 AM UTC 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Build Host : x86-vm-07.build.eng.bos.redhat.com 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Relocations : (not relocatable) 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Packager : Red Hat, Inc. 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Vendor : Red Hat, Inc. 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:URL : http://www.gnu.org/software/grub/ 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Summary : Support tools for GRUB. 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:Description : 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:customizable bootloader with modular architecture. It supports a rich 2023-12-06T03:34:46.460 INFO:teuthology.orchestra.run.smithi017.stdout:variety of kernel formats, file systems, computer architectures and 2023-12-06T03:34:46.461 INFO:teuthology.orchestra.run.smithi017.stdout:hardware devices. 2023-12-06T03:34:46.461 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:34:46.461 INFO:teuthology.orchestra.run.smithi017.stdout:This subpackage provides tools for support of all platforms. 2023-12-06T03:34:46.461 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-12-06T03:34:46.461 INFO:teuthology.task.kernel:Updating grub on smithi017 to boot 4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:46.462 DEBUG:teuthology.orchestra.run.smithi017:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-12-06T03:34:47.853 INFO:teuthology.orchestra.run.smithi017.stderr:Generating grub configuration file ... 2023-12-06T03:34:47.927 INFO:teuthology.orchestra.run.smithi169.stderr:Generating grub configuration file ... 2023-12-06T03:34:49.920 INFO:teuthology.orchestra.run.smithi017.stderr:done 2023-12-06T03:34:49.921 DEBUG:teuthology.orchestra.run.smithi017:> mktemp 2023-12-06T03:34:49.958 INFO:teuthology.orchestra.run.smithi017.stdout:/tmp/tmp.zEXMVTGoF4 2023-12-06T03:34:49.959 DEBUG:teuthology.orchestra.run.smithi017:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.zEXMVTGoF4 2023-12-06T03:34:50.027 DEBUG:teuthology.orchestra.run.smithi017:> sudo chmod 0666 /tmp/tmp.zEXMVTGoF4 2023-12-06T03:34:50.133 INFO:teuthology.orchestra.run.smithi169.stderr:done 2023-12-06T03:34:50.134 DEBUG:teuthology.orchestra.run.smithi169:> mktemp 2023-12-06T03:34:50.148 INFO:teuthology.orchestra.run.smithi169.stdout:/tmp/tmp.6MLlIfAmGO 2023-12-06T03:34:50.148 DEBUG:teuthology.orchestra.run.smithi169:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.6MLlIfAmGO 2023-12-06T03:34:50.183 DEBUG:teuthology.orchestra.remote:smithi017:/tmp/tmp.zEXMVTGoF4 is 6KB 2023-12-06T03:34:50.221 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 0666 /tmp/tmp.6MLlIfAmGO 2023-12-06T03:34:50.232 DEBUG:teuthology.orchestra.run.smithi017:> rm -fr /tmp/tmp.zEXMVTGoF4 2023-12-06T03:34:50.246 DEBUG:teuthology.orchestra.run.smithi017:> sudo /bin/ls /boot/loader/entries || true 2023-12-06T03:34:50.311 INFO:teuthology.orchestra.run.smithi017.stdout:298e228f3b5e401e8ac0f5ae159a2e06-0-rescue.conf 2023-12-06T03:34:50.312 INFO:teuthology.orchestra.run.smithi017.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-305.25.1.el8_4.x86_64.conf 2023-12-06T03:34:50.312 INFO:teuthology.orchestra.run.smithi017.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64.conf 2023-12-06T03:34:50.312 INFO:teuthology.orchestra.run.smithi017.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-80.el8.x86_64.conf 2023-12-06T03:34:50.313 DEBUG:teuthology.orchestra.run.smithi017:> sudo grub2-set-default 298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:50.378 DEBUG:teuthology.orchestra.remote:smithi169:/tmp/tmp.6MLlIfAmGO is 6KB 2023-12-06T03:34:50.396 DEBUG:teuthology.orchestra.run.smithi169:> rm -fr /tmp/tmp.6MLlIfAmGO 2023-12-06T03:34:50.410 DEBUG:teuthology.orchestra.run.smithi169:> sudo /bin/ls /boot/loader/entries || true 2023-12-06T03:34:50.476 INFO:teuthology.orchestra.run.smithi169.stdout:298e228f3b5e401e8ac0f5ae159a2e06-0-rescue.conf 2023-12-06T03:34:50.477 INFO:teuthology.orchestra.run.smithi169.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-305.25.1.el8_4.x86_64.conf 2023-12-06T03:34:50.477 INFO:teuthology.orchestra.run.smithi169.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64.conf 2023-12-06T03:34:50.477 INFO:teuthology.orchestra.run.smithi169.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-80.el8.x86_64.conf 2023-12-06T03:34:50.478 DEBUG:teuthology.orchestra.run.smithi169:> sudo grub2-set-default 298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64 2023-12-06T03:34:50.635 DEBUG:teuthology.orchestra.run.smithi169:> sudo shutdown -r now 2023-12-06T03:34:50.643 DEBUG:teuthology.orchestra.run.smithi017:> sudo shutdown -r now 2023-12-06T03:35:20.666 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2023-12-06T03:35:20.667 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:35:20.668 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:35:20.669 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2023-12-06T03:35:20.670 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:35:20.670 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi017.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:35:39.106 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2023-12-06T03:35:39.107 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.17 2023-12-06T03:35:48.114 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:35:48.115 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:35:48.116 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:35:48.116 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi017.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:35:51.174 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2023-12-06T03:35:51.174 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.17 2023-12-06T03:36:03.186 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:36:03.187 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:36:03.188 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:36:03.189 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi017.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:36:35.086 DEBUG:teuthology.orchestra.run.smithi017:> true 2023-12-06T03:36:35.404 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:36:35.404 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.18.0-425.3.1.el8.x86_64"... 2023-12-06T03:36:35.404 DEBUG:teuthology.orchestra.run.smithi017:> uname -r 2023-12-06T03:36:35.418 INFO:teuthology.orchestra.run.smithi017.stdout:4.18.0-425.3.1.el8.x86_64 2023-12-06T03:36:35.418 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-12-06T03:36:35.419 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-12-06T03:36:35.419 DEBUG:teuthology.task.kernel:Distro of this test job: rhel 2023-12-06T03:36:36.420 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-12-06T03:36:36.420 DEBUG:teuthology.orchestra.run.smithi017:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-06T03:36:36.704 INFO:teuthology.orchestra.run.smithi017.stdout:ttyS1 2023-12-06T03:36:36.725 DEBUG:teuthology.parallel:result is None 2023-12-06T03:37:03.190 DEBUG:teuthology.orchestra.remote:timed out 2023-12-06T03:37:18.192 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:37:18.192 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:37:18.541 DEBUG:teuthology.orchestra.run.smithi169:> true 2023-12-06T03:37:18.760 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:37:18.760 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.18.0-425.3.1.el8.x86_64"... 2023-12-06T03:37:18.760 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2023-12-06T03:37:18.814 INFO:teuthology.orchestra.run.smithi169.stdout:4.18.0-425.3.1.el8.x86_64 2023-12-06T03:37:18.815 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-12-06T03:37:18.815 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-12-06T03:37:18.815 DEBUG:teuthology.task.kernel:Distro of this test job: rhel 2023-12-06T03:37:19.816 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-12-06T03:37:19.816 DEBUG:teuthology.orchestra.run.smithi169:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-06T03:37:19.915 INFO:teuthology.orchestra.run.smithi169.stdout:ttyS1 2023-12-06T03:37:19.927 DEBUG:teuthology.parallel:result is None 2023-12-06T03:37:19.928 INFO:teuthology.run_tasks:Running task internal.base... 2023-12-06T03:37:19.935 INFO:teuthology.task.internal:Creating test directory... 2023-12-06T03:37:19.935 DEBUG:teuthology.orchestra.run.smithi017:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-06T03:37:19.938 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-06T03:37:19.954 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-12-06T03:37:19.977 INFO:teuthology.run_tasks:Running task internal.archive... 2023-12-06T03:37:19.992 INFO:teuthology.task.internal:Creating archive directory... 2023-12-06T03:37:19.993 DEBUG:teuthology.orchestra.run.smithi017:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-06T03:37:19.996 DEBUG:teuthology.orchestra.run.smithi169:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-06T03:37:20.036 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-12-06T03:37:20.043 INFO:teuthology.task.internal:Enabling coredump saving... 2023-12-06T03:37:20.044 DEBUG:teuthology.orchestra.run.smithi017:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-06T03:37:20.075 DEBUG:teuthology.orchestra.run.smithi169:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-06T03:37:20.109 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-06T03:37:20.110 INFO:teuthology.orchestra.run.smithi017.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-06T03:37:20.120 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-06T03:37:20.122 INFO:teuthology.orchestra.run.smithi017.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-06T03:37:20.123 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-12-06T03:37:20.130 INFO:teuthology.task.internal:Configuring sudo... 2023-12-06T03:37:20.130 DEBUG:teuthology.orchestra.run.smithi017:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-06T03:37:20.165 DEBUG:teuthology.orchestra.run.smithi169:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-06T03:37:20.192 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-12-06T03:37:20.223 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-12-06T03:37:20.223 DEBUG:teuthology.orchestra.run.smithi017:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-06T03:37:20.234 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-06T03:37:20.250 DEBUG:teuthology.orchestra.run.smithi017:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-06T03:37:20.338 DEBUG:teuthology.orchestra.run.smithi017:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-06T03:37:20.387 DEBUG:teuthology.orchestra.run.smithi017:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-06T03:37:20.472 DEBUG:teuthology.orchestra.run.smithi017:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-06T03:37:20.512 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:37:20.512 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-06T03:37:20.578 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-06T03:37:20.620 DEBUG:teuthology.orchestra.run.smithi169:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-06T03:37:20.663 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-06T03:37:20.745 DEBUG:teuthology.orchestra.run.smithi169:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-06T03:37:20.785 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:37:20.785 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-06T03:37:20.850 DEBUG:teuthology.orchestra.run.smithi017:> sudo service rsyslog restart 2023-12-06T03:37:20.852 DEBUG:teuthology.orchestra.run.smithi169:> sudo service rsyslog restart 2023-12-06T03:37:20.918 INFO:teuthology.orchestra.run.smithi017.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-06T03:37:20.952 INFO:teuthology.orchestra.run.smithi169.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-06T03:37:21.330 INFO:teuthology.run_tasks:Running task internal.timer... 2023-12-06T03:37:21.338 INFO:teuthology.task.internal:Starting timer... 2023-12-06T03:37:21.338 INFO:teuthology.run_tasks:Running task pcp... 2023-12-06T03:37:21.352 INFO:teuthology.run_tasks:Running task selinux... 2023-12-06T03:37:21.359 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-12-06T03:37:21.360 DEBUG:teuthology.orchestra.run.smithi017:> sudo service auditd rotate 2023-12-06T03:37:21.415 INFO:teuthology.orchestra.run.smithi017.stdout:Rotating logs: [ OK ] 2023-12-06T03:37:21.417 DEBUG:teuthology.orchestra.run.smithi169:> sudo service auditd rotate 2023-12-06T03:37:21.480 INFO:teuthology.orchestra.run.smithi169.stdout:Rotating logs: [ OK ] 2023-12-06T03:37:21.481 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-12-06T03:37:21.481 DEBUG:teuthology.orchestra.run.smithi017:> /usr/sbin/getenforce 2023-12-06T03:37:21.503 INFO:teuthology.orchestra.run.smithi017.stdout:Permissive 2023-12-06T03:37:21.503 DEBUG:teuthology.orchestra.run.smithi169:> /usr/sbin/getenforce 2023-12-06T03:37:21.525 INFO:teuthology.orchestra.run.smithi169.stdout:Permissive 2023-12-06T03:37:21.525 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi017.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi169.front.sepia.ceph.com': 'permissive'} 2023-12-06T03:37:21.525 DEBUG:teuthology.orchestra.run.smithi017:> 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-12-06T03:37:21.568 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T03:37:21.569 DEBUG:teuthology.orchestra.run.smithi169:> 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-12-06T03:37:21.595 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T03:37:21.595 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-12-06T03:37:21.595 DEBUG:teuthology.orchestra.run.smithi017:> sudo /usr/sbin/setenforce permissive 2023-12-06T03:37:21.635 DEBUG:teuthology.orchestra.run.smithi169:> sudo /usr/sbin/setenforce permissive 2023-12-06T03:37:21.663 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-12-06T03:37:21.672 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2023-12-06T03:37:21.678 INFO:teuthology.repo_utils:Fetching main from origin 2023-12-06T03:37:21.792 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-12-06T03:37:21.813 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2023-12-06T03:37:21.814 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi017.front.sepia.ceph.com,smithi169.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-12-06T03:47:36.485 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi017.front.sepia.ceph.com'), Remote(name='ubuntu@smithi169.front.sepia.ceph.com')] 2023-12-06T03:47:36.486 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:47:36.487 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi017.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:47:36.561 DEBUG:teuthology.orchestra.run.smithi017:> true 2023-12-06T03:47:36.634 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi017.front.sepia.ceph.com' 2023-12-06T03:47:36.634 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:47:36.635 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-06T03:47:36.703 DEBUG:teuthology.orchestra.run.smithi169:> true 2023-12-06T03:47:36.773 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2023-12-06T03:47:36.773 INFO:teuthology.run_tasks:Running task clock... 2023-12-06T03:47:36.788 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-12-06T03:47:36.788 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-06T03:47:36.788 DEBUG:teuthology.orchestra.run.smithi017:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-06T03:47:36.795 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-06T03:47:36.795 DEBUG:teuthology.orchestra.run.smithi169:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-06T03:47:36.827 INFO:teuthology.orchestra.run.smithi017.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-06T03:47:36.843 INFO:teuthology.orchestra.run.smithi017.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-06T03:47:36.844 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-06T03:47:36.859 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-06T03:47:36.887 INFO:teuthology.orchestra.run.smithi017.stderr:sudo: ntpd: command not found 2023-12-06T03:47:36.894 INFO:teuthology.orchestra.run.smithi169.stderr:sudo: ntpd: command not found 2023-12-06T03:47:36.898 INFO:teuthology.orchestra.run.smithi017.stdout:506 Cannot talk to daemon 2023-12-06T03:47:36.904 INFO:teuthology.orchestra.run.smithi169.stdout:506 Cannot talk to daemon 2023-12-06T03:47:36.915 INFO:teuthology.orchestra.run.smithi017.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-06T03:47:36.918 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-06T03:47:36.928 INFO:teuthology.orchestra.run.smithi017.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-06T03:47:36.932 INFO:teuthology.orchestra.run.smithi169.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-06T03:47:36.989 INFO:teuthology.orchestra.run.smithi169.stderr:bash: ntpq: command not found 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:210 Number of sources = 4 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:=============================================================================== 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:36.992 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:36.996 INFO:teuthology.orchestra.run.smithi017.stderr:bash: ntpq: command not found 2023-12-06T03:47:36.999 INFO:teuthology.orchestra.run.smithi017.stdout:210 Number of sources = 4 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:=============================================================================== 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:37.000 INFO:teuthology.orchestra.run.smithi017.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T03:47:37.000 INFO:teuthology.run_tasks:Running task pexec... 2023-12-06T03:47:37.010 INFO:teuthology.task.pexec:Executing custom commands... 2023-12-06T03:47:37.010 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:47:37.010 DEBUG:teuthology.orchestra.run.smithi017:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-06T03:47:37.011 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi169.front.sepia.ceph.com 2023-12-06T03:47:37.011 DEBUG:teuthology.orchestra.run.smithi169:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-06T03:47:37.428 INFO:teuthology.orchestra.run.smithi169.stdout:Updating Subscription Management repositories. 2023-12-06T03:47:37.451 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:47:38.827 INFO:teuthology.orchestra.run.smithi169.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 84 kB/s | 4.1 kB 00:00 2023-12-06T03:47:38.852 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 97 kB/s | 4.1 kB 00:00 2023-12-06T03:47:39.005 INFO:teuthology.orchestra.run.smithi169.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 68 kB/s | 4.5 kB 00:00 2023-12-06T03:47:39.017 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 93 kB/s | 4.5 kB 00:00 2023-12-06T03:47:41.237 INFO:teuthology.orchestra.run.smithi017.stdout:Dependencies resolved. 2023-12-06T03:47:41.238 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:47:41.238 INFO:teuthology.orchestra.run.smithi017.stdout: Package Architecture Version Repository Size 2023-12-06T03:47:41.238 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:47:41.238 INFO:teuthology.orchestra.run.smithi017.stdout:Resetting modules: 2023-12-06T03:47:41.238 INFO:teuthology.orchestra.run.smithi017.stdout: container-tools 2023-12-06T03:47:41.239 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:41.239 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction Summary 2023-12-06T03:47:41.239 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:47:41.239 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:41.261 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout: Package Architecture Version Repository Size 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout:Resetting modules: 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout: container-tools 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout:================================================================================ 2023-12-06T03:47:41.262 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:44.645 INFO:teuthology.orchestra.run.smithi017.stdout:Complete! 2023-12-06T03:47:44.753 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2023-12-06T03:47:45.107 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:47:45.202 INFO:teuthology.orchestra.run.smithi169.stdout:Updating Subscription Management repositories. 2023-12-06T03:47:46.338 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 118 kB/s | 4.1 kB 00:00 2023-12-06T03:47:46.451 INFO:teuthology.orchestra.run.smithi169.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 98 kB/s | 4.1 kB 00:00 2023-12-06T03:47:46.498 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 103 kB/s | 4.5 kB 00:00 2023-12-06T03:47:46.624 INFO:teuthology.orchestra.run.smithi169.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 73 kB/s | 4.5 kB 00:00 2023-12-06T03:47:48.721 INFO:teuthology.orchestra.run.smithi017.stdout:Dependencies resolved. 2023-12-06T03:47:48.723 INFO:teuthology.orchestra.run.smithi169.stdout:Dependencies resolved. 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout:========================================================================================================= 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout: Package Arch Version Repository Size 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout:========================================================================================================= 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout:Installing group/module packages: 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.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-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout: cockpit-podman noarch 32-2.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 410 k 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout: crun x86_64 0.20.1-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 192 k 2023-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.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-12-06T03:47:48.772 INFO:teuthology.orchestra.run.smithi169.stdout: toolbox noarch 0.0.8-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 16 k 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: udica noarch 0.2.4-2.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:Installing dependencies: 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:Installing module profiles: 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: container-tools/common 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:Enabling module streams: 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: container-tools rhel8 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction Summary 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:========================================================================================================= 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout:Install 7 Packages 2023-12-06T03:47:48.773 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi169.stdout:Total download size: 16 M 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi169.stdout:Installed size: 57 M 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi169.stdout:Downloading Packages: 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi017.stdout:========================================================================================================= 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi017.stdout: Package Arch Version Repository Size 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi017.stdout:========================================================================================================= 2023-12-06T03:47:48.774 INFO:teuthology.orchestra.run.smithi017.stdout:Installing group/module packages: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.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-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: cockpit-podman noarch 32-2.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 410 k 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: crun x86_64 0.20.1-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 192 k 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.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-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: toolbox noarch 0.0.8-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 16 k 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: udica noarch 0.2.4-2.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:Installing dependencies: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:Installing module profiles: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: container-tools/common 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:Enabling module streams: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: container-tools rhel8 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction Summary 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:========================================================================================================= 2023-12-06T03:47:48.775 INFO:teuthology.orchestra.run.smithi017.stdout:Install 7 Packages 2023-12-06T03:47:48.776 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:48.776 INFO:teuthology.orchestra.run.smithi017.stdout:Total download size: 16 M 2023-12-06T03:47:48.776 INFO:teuthology.orchestra.run.smithi017.stdout:Installed size: 57 M 2023-12-06T03:47:48.776 INFO:teuthology.orchestra.run.smithi017.stdout:Downloading Packages: 2023-12-06T03:47:48.834 INFO:teuthology.orchestra.run.smithi169.stdout:(1/7): yajl-2.1.0-10.el8.x86_64.rpm 683 kB/s | 41 kB 00:00 2023-12-06T03:47:48.892 INFO:teuthology.orchestra.run.smithi017.stdout:(1/7): yajl-2.1.0-10.el8.x86_64.rpm 355 kB/s | 41 kB 00:00 2023-12-06T03:47:48.899 INFO:teuthology.orchestra.run.smithi169.stdout:(2/7): cockpit-podman-32-2.module+el8.4.0+11990 3.2 MB/s | 410 kB 00:00 2023-12-06T03:47:48.904 INFO:teuthology.orchestra.run.smithi169.stdout:(3/7): crun-0.20.1-1.module+el8.4.0+11822+6cc1e 1.4 MB/s | 192 kB 00:00 2023-12-06T03:47:48.915 INFO:teuthology.orchestra.run.smithi017.stdout:(2/7): cockpit-podman-32-2.module+el8.4.0+11990 2.9 MB/s | 410 kB 00:00 2023-12-06T03:47:48.920 INFO:teuthology.orchestra.run.smithi169.stdout:(4/7): toolbox-0.0.8-1.module+el8.4.0+11822+6cc 184 kB/s | 16 kB 00:00 2023-12-06T03:47:48.927 INFO:teuthology.orchestra.run.smithi017.stdout:(3/7): crun-0.20.1-1.module+el8.4.0+11822+6cc1e 1.2 MB/s | 192 kB 00:00 2023-12-06T03:47:49.060 INFO:teuthology.orchestra.run.smithi017.stdout:(4/7): toolbox-0.0.8-1.module+el8.4.0+11822+6cc 94 kB/s | 16 kB 00:00 2023-12-06T03:47:49.096 INFO:teuthology.orchestra.run.smithi169.stdout:(5/7): skopeo-1.3.1-5.module+el8.4.0+11990+2293 36 MB/s | 7.0 MB 00:00 2023-12-06T03:47:49.134 INFO:teuthology.orchestra.run.smithi017.stdout:(5/7): skopeo-1.3.1-5.module+el8.4.0+11990+2293 32 MB/s | 7.0 MB 00:00 2023-12-06T03:47:49.177 INFO:teuthology.orchestra.run.smithi169.stdout:(6/7): buildah-1.21.4-2.module+el8.4.0+12050+ef 30 MB/s | 8.2 MB 00:00 2023-12-06T03:47:49.178 INFO:teuthology.orchestra.run.smithi017.stdout:(6/7): buildah-1.21.4-2.module+el8.4.0+12050+ef 33 MB/s | 8.2 MB 00:00 2023-12-06T03:47:49.179 INFO:teuthology.orchestra.run.smithi017.stdout:(7/7): udica-0.2.4-2.module+el8.4.0+11822+6cc1e 429 kB/s | 51 kB 00:00 2023-12-06T03:47:49.180 INFO:teuthology.orchestra.run.smithi017.stdout:-------------------------------------------------------------------------------- 2023-12-06T03:47:49.180 INFO:teuthology.orchestra.run.smithi017.stdout:Total 39 MB/s | 16 MB 00:00 2023-12-06T03:47:49.186 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction check 2023-12-06T03:47:49.196 INFO:teuthology.orchestra.run.smithi169.stdout:(7/7): udica-0.2.4-2.module+el8.4.0+11822+6cc1e 183 kB/s | 51 kB 00:00 2023-12-06T03:47:49.197 INFO:teuthology.orchestra.run.smithi169.stdout:-------------------------------------------------------------------------------- 2023-12-06T03:47:49.197 INFO:teuthology.orchestra.run.smithi169.stdout:Total 37 MB/s | 16 MB 00:00 2023-12-06T03:47:49.203 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction check 2023-12-06T03:47:49.205 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction check succeeded. 2023-12-06T03:47:49.205 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction test 2023-12-06T03:47:49.220 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction check succeeded. 2023-12-06T03:47:49.220 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction test 2023-12-06T03:47:49.712 INFO:teuthology.orchestra.run.smithi169.stdout:Transaction test succeeded. 2023-12-06T03:47:49.717 INFO:teuthology.orchestra.run.smithi169.stdout:Running transaction 2023-12-06T03:47:49.731 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction test succeeded. 2023-12-06T03:47:49.735 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction 2023-12-06T03:47:50.119 INFO:teuthology.orchestra.run.smithi169.stdout: Preparing : 1/1 2023-12-06T03:47:50.221 INFO:teuthology.orchestra.run.smithi017.stdout: Preparing : 1/1 2023-12-06T03:47:50.326 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : yajl-2.1.0-10.el8.x86_64 1/7 2023-12-06T03:47:50.413 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : yajl-2.1.0-10.el8.x86_64 1/7 2023-12-06T03:47:50.499 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-12-06T03:47:50.638 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-12-06T03:47:51.408 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 3/7 2023-12-06T03:47:51.618 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 3/7 2023-12-06T03:47:52.226 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 4/7 2023-12-06T03:47:52.401 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-12-06T03:47:52.462 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 4/7 2023-12-06T03:47:52.594 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 6/7 2023-12-06T03:47:52.679 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-12-06T03:47:52.746 INFO:teuthology.orchestra.run.smithi169.stdout: Installing : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-12-06T03:47:52.809 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 6/7 2023-12-06T03:47:52.975 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-12-06T03:47:53.012 INFO:teuthology.orchestra.run.smithi169.stdout: Running scriptlet: cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 1/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 3/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 4/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-12-06T03:47:53.013 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 6/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Running scriptlet: cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 1/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 3/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 4/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-12-06T03:47:53.245 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 6/7 2023-12-06T03:47:59.116 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 7/7 2023-12-06T03:47:59.116 INFO:teuthology.orchestra.run.smithi017.stdout:Installed products updated. 2023-12-06T03:47:59.183 INFO:teuthology.orchestra.run.smithi169.stdout: Verifying : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 7/7 2023-12-06T03:47:59.183 INFO:teuthology.orchestra.run.smithi169.stdout:Installed products updated. 2023-12-06T03:47:59.230 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout:Installed: 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_64 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: cockpit-podman-32-2.module+el8.4.0+11990+22932769.noarch 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_64 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 2023-12-06T03:47:59.231 INFO:teuthology.orchestra.run.smithi017.stdout: udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 2023-12-06T03:47:59.232 INFO:teuthology.orchestra.run.smithi017.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-06T03:47:59.232 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:47:59.232 INFO:teuthology.orchestra.run.smithi017.stdout:Complete! 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout:Installed: 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout: buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_64 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout: cockpit-podman-32-2.module+el8.4.0+11990+22932769.noarch 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout: crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2023-12-06T03:47:59.282 INFO:teuthology.orchestra.run.smithi169.stdout: skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_64 2023-12-06T03:47:59.283 INFO:teuthology.orchestra.run.smithi169.stdout: toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 2023-12-06T03:47:59.283 INFO:teuthology.orchestra.run.smithi169.stdout: udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 2023-12-06T03:47:59.283 INFO:teuthology.orchestra.run.smithi169.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-06T03:47:59.283 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:47:59.283 INFO:teuthology.orchestra.run.smithi169.stdout:Complete! 2023-12-06T03:47:59.364 DEBUG:teuthology.parallel:result is None 2023-12-06T03:47:59.402 DEBUG:teuthology.parallel:result is None 2023-12-06T03:47:59.402 INFO:teuthology.run_tasks:Running task nvme_loop... 2023-12-06T03:47:59.413 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2023-12-06T03:47:59.413 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:47:59.413 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:47:59.428 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-12-06T03:47:59.429 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/vg_nvme/lv_1 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 217797 Links: 1 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:47:35.402444364 +0000 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:47:05.419759755 +0000 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:47:05.419759755 +0000 2023-12-06T03:47:59.484 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:47:59.485 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-12-06T03:47:59.548 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:47:59.548 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:47:59.548 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000104436 s, 4.9 MB/s 2023-12-06T03:47:59.549 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-12-06T03:47:59.605 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/vg_nvme/lv_2 2023-12-06T03:47:59.660 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 220526 Links: 1 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:47:35.402444364 +0000 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:47:05.952754151 +0000 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:47:05.952754151 +0000 2023-12-06T03:47:59.661 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:47:59.661 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-12-06T03:47:59.725 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:47:59.725 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:47:59.725 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000102643 s, 5.0 MB/s 2023-12-06T03:47:59.727 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-12-06T03:47:59.783 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/vg_nvme/lv_3 2023-12-06T03:47:59.838 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-12-06T03:47:59.838 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:47:59.838 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 221797 Links: 1 2023-12-06T03:47:59.838 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:47:59.838 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:47:59.839 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:47:35.403444354 +0000 2023-12-06T03:47:59.839 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:47:06.469748716 +0000 2023-12-06T03:47:59.839 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:47:06.469748716 +0000 2023-12-06T03:47:59.839 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:47:59.839 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-12-06T03:47:59.902 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:47:59.902 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:47:59.902 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000101591 s, 5.0 MB/s 2023-12-06T03:47:59.903 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-12-06T03:47:59.959 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/vg_nvme/lv_4 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 220600 Links: 1 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:47:35.403444354 +0000 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:47:06.961743543 +0000 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:47:06.961743543 +0000 2023-12-06T03:48:00.015 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:48:00.015 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-12-06T03:48:00.078 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:48:00.078 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:48:00.079 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000120717 s, 4.2 MB/s 2023-12-06T03:48:00.079 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-12-06T03:48:00.136 DEBUG:teuthology.orchestra.run.smithi017:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2023-12-06T03:48:00.329 INFO:teuthology.orchestra.run.smithi017.stdout:loop 2023-12-06T03:48:00.330 INFO:tasks.nvme_loop:Connecting nvme_loop smithi017:/dev/vg_nvme/lv_1... 2023-12-06T03:48:00.330 DEBUG:teuthology.orchestra.run.smithi017:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2023-12-06T03:48:00.363 INFO:teuthology.orchestra.run.smithi017.stdout:1 2023-12-06T03:48:00.399 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/vg_nvme/lv_11 2023-12-06T03:48:00.439 INFO:tasks.nvme_loop:Connecting nvme_loop smithi017:/dev/vg_nvme/lv_2... 2023-12-06T03:48:00.439 DEBUG:teuthology.orchestra.run.smithi017:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2023-12-06T03:48:00.515 INFO:teuthology.orchestra.run.smithi017.stdout:1 2023-12-06T03:48:00.551 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/vg_nvme/lv_21 2023-12-06T03:48:00.590 INFO:tasks.nvme_loop:Connecting nvme_loop smithi017:/dev/vg_nvme/lv_3... 2023-12-06T03:48:00.590 DEBUG:teuthology.orchestra.run.smithi017:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2023-12-06T03:48:00.669 INFO:teuthology.orchestra.run.smithi017.stdout:1 2023-12-06T03:48:00.704 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/vg_nvme/lv_31 2023-12-06T03:48:00.745 INFO:tasks.nvme_loop:Connecting nvme_loop smithi017:/dev/vg_nvme/lv_4... 2023-12-06T03:48:00.745 DEBUG:teuthology.orchestra.run.smithi017:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2023-12-06T03:48:00.815 INFO:teuthology.orchestra.run.smithi017.stdout:1 2023-12-06T03:48:00.852 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/vg_nvme/lv_41 2023-12-06T03:48:00.891 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:48:00.891 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:48:00.946 DEBUG:teuthology.orchestra.run.smithi017:> sudo nvme list 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:Node SN Model Namespace Usage Format FW Rev 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/nvme0n1 PHMB7473003Q480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/nvme1n1 18ca1c998c9486d23bec Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/nvme2n1 2f836b03270a29297a55 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/nvme3n1 ae31564f6d192d3fa4ec Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:01.010 INFO:teuthology.orchestra.run.smithi017.stdout:/dev/nvme4n1 0fabc1b5aae34d0a45bc Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:01.011 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-06T03:48:01.011 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:48:01.011 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/scratch_devs 2023-12-06T03:48:01.075 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:48:01.075 DEBUG:teuthology.orchestra.run.smithi169:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:48:01.092 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-12-06T03:48:01.093 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_1 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 219783 Links: 1 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:47:35.352352588 +0000 2023-12-06T03:48:01.149 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:46:46.756399675 +0000 2023-12-06T03:48:01.150 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:46:46.756399675 +0000 2023-12-06T03:48:01.150 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:48:01.150 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-12-06T03:48:01.216 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:48:01.216 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:48:01.216 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000249578 s, 2.1 MB/s 2023-12-06T03:48:01.217 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-12-06T03:48:01.274 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_2 2023-12-06T03:48:01.331 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 213748 Links: 1 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:47:35.352352588 +0000 2023-12-06T03:48:01.332 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:46:47.248389075 +0000 2023-12-06T03:48:01.333 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:46:47.248389075 +0000 2023-12-06T03:48:01.333 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:48:01.333 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-12-06T03:48:01.397 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:48:01.397 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:48:01.397 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000203581 s, 2.5 MB/s 2023-12-06T03:48:01.399 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-12-06T03:48:01.457 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_3 2023-12-06T03:48:01.514 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 223432 Links: 1 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:47:35.352352588 +0000 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:46:47.739378497 +0000 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:46:47.739378497 +0000 2023-12-06T03:48:01.515 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:48:01.516 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-12-06T03:48:01.580 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:48:01.580 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:48:01.580 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000251279 s, 2.0 MB/s 2023-12-06T03:48:01.581 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-12-06T03:48:01.638 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/vg_nvme/lv_4 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 217925 Links: 1 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:device_t:s0 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:47:35.353352567 +0000 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:46:48.256367358 +0000 2023-12-06T03:48:01.695 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:46:48.256367358 +0000 2023-12-06T03:48:01.696 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:48:01.696 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-12-06T03:48:01.761 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:48:01.761 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:48:01.761 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000207677 s, 2.5 MB/s 2023-12-06T03:48:01.762 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-12-06T03:48:01.820 DEBUG:teuthology.orchestra.run.smithi169:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2023-12-06T03:48:01.941 INFO:teuthology.orchestra.run.smithi169.stdout:loop 2023-12-06T03:48:01.943 INFO:tasks.nvme_loop:Connecting nvme_loop smithi169:/dev/vg_nvme/lv_1... 2023-12-06T03:48:01.943 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2023-12-06T03:48:01.977 INFO:teuthology.orchestra.run.smithi169.stdout:1 2023-12-06T03:48:02.011 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/vg_nvme/lv_11 2023-12-06T03:48:02.051 INFO:tasks.nvme_loop:Connecting nvme_loop smithi169:/dev/vg_nvme/lv_2... 2023-12-06T03:48:02.051 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2023-12-06T03:48:02.125 INFO:teuthology.orchestra.run.smithi169.stdout:1 2023-12-06T03:48:02.161 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/vg_nvme/lv_21 2023-12-06T03:48:02.199 INFO:tasks.nvme_loop:Connecting nvme_loop smithi169:/dev/vg_nvme/lv_3... 2023-12-06T03:48:02.199 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2023-12-06T03:48:02.273 INFO:teuthology.orchestra.run.smithi169.stdout:1 2023-12-06T03:48:02.308 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/vg_nvme/lv_31 2023-12-06T03:48:02.345 INFO:tasks.nvme_loop:Connecting nvme_loop smithi169:/dev/vg_nvme/lv_4... 2023-12-06T03:48:02.346 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2023-12-06T03:48:02.419 INFO:teuthology.orchestra.run.smithi169.stdout:1 2023-12-06T03:48:02.453 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/vg_nvme/lv_41 2023-12-06T03:48:02.491 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:48:02.492 DEBUG:teuthology.orchestra.run.smithi169:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:48:02.546 DEBUG:teuthology.orchestra.run.smithi169:> sudo nvme list 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:Node SN Model Namespace Usage Format FW Rev 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/nvme0n1 CVFT623300LN400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/nvme1n1 f1ca633924a5769bd72b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/nvme2n1 d2b7e0eaf111e651e623 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/nvme3n1 678ffb5836125fe1533f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:02.609 INFO:teuthology.orchestra.run.smithi169.stdout:/dev/nvme4n1 532a217b5c3c7cd8e869 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-12-06T03:48:02.610 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-06T03:48:02.610 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:48:02.611 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/scratch_devs 2023-12-06T03:48:02.674 INFO:teuthology.run_tasks:Running task cephadm... 2023-12-06T03:48:02.755 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': 'd03fca4f35d43f61b4679936aef7bd2f01cced0b'} 2023-12-06T03:48:02.755 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b 2023-12-06T03:48:02.755 INFO:tasks.cephadm:Cluster fsid is 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:02.755 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2023-12-06T03:48:02.756 INFO:tasks.cephadm:No mon roles; fabricating mons 2023-12-06T03:48:02.756 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi017': '172.21.15.17', 'mon.smithi169': '172.21.15.169'} 2023-12-06T03:48:02.756 INFO:tasks.cephadm:Normalizing hostnames... 2023-12-06T03:48:02.756 DEBUG:teuthology.orchestra.run.smithi017:> sudo hostname $(hostname -s) 2023-12-06T03:48:02.787 DEBUG:teuthology.orchestra.run.smithi169:> sudo hostname $(hostname -s) 2023-12-06T03:48:02.812 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref d03fca4f35d43f61b4679936aef7bd2f01cced0b)... 2023-12-06T03:48:02.813 DEBUG:teuthology.orchestra.run.smithi017:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/d03fca4f35d43f61b4679936aef7bd2f01cced0b/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:02.995 INFO:teuthology.orchestra.run.smithi017.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Dec 6 03:48 /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:02.995 DEBUG:teuthology.orchestra.run.smithi169:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/d03fca4f35d43f61b4679936aef7bd2f01cced0b/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:03.131 INFO:teuthology.orchestra.run.smithi169.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Dec 6 03:48 /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:03.131 DEBUG:teuthology.orchestra.run.smithi017:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:03.151 DEBUG:teuthology.orchestra.run.smithi169:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-12-06T03:48:03.175 DEBUG:teuthology.orchestra.run.smithi017:> sudo mkdir -p /etc/ceph 2023-12-06T03:48:03.220 DEBUG:teuthology.orchestra.run.smithi169:> sudo mkdir -p /etc/ceph 2023-12-06T03:48:03.245 DEBUG:teuthology.orchestra.run.smithi017:> sudo chmod 777 /etc/ceph 2023-12-06T03:48:03.289 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 777 /etc/ceph 2023-12-06T03:48:03.313 INFO:tasks.cephadm:Writing seed config... 2023-12-06T03:48:03.315 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2023-12-06T03:48:03.315 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2023-12-06T03:48:03.315 INFO:tasks.cephadm: override: [mon] debug mon = 20 2023-12-06T03:48:03.315 INFO:tasks.cephadm: override: [mon] debug ms = 1 2023-12-06T03:48:03.315 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2023-12-06T03:48:03.316 INFO:tasks.cephadm: override: [osd] debug ms = 1 2023-12-06T03:48:03.316 INFO:tasks.cephadm: override: [osd] debug osd = 20 2023-12-06T03:48:03.316 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2023-12-06T03:48:03.317 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:48:03.317 DEBUG:teuthology.orchestra.run.smithi017:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2023-12-06T03:48:03.347 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 = 419dd438-93ea-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-12-06T03:48:03.347 DEBUG:teuthology.orchestra.run.smithi017:mon.smithi017> sudo journalctl -f -n 0 -u ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service 2023-12-06T03:48:03.391 INFO:tasks.cephadm:Bootstrapping... 2023-12-06T03:48:03.391 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b -v bootstrap --fsid 419dd438-93ea-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.17 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2023-12-06T03:48:03.419 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:-- Logs begin at Wed 2023-12-06 03:36:10 UTC. -- 2023-12-06T03:48:03.759 INFO:teuthology.orchestra.run.smithi017.stderr:-------------------------------------------------------------------------------- 2023-12-06T03:48:03.760 INFO:teuthology.orchestra.run.smithi017.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b', '-v', 'bootstrap', '--fsid', '419dd438-93ea-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.17', '--skip-admin-label'] 2023-12-06T03:48:05.608 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: 3.2.3 2023-12-06T03:48:05.636 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying podman|docker is present... 2023-12-06T03:48:05.684 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: 3.2.3 2023-12-06T03:48:05.782 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying lvm2 is present... 2023-12-06T03:48:05.782 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying time synchronization is in place... 2023-12-06T03:48:05.789 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-12-06T03:48:05.795 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:48:05.802 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: enabled 2023-12-06T03:48:05.808 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: active 2023-12-06T03:48:05.809 INFO:teuthology.orchestra.run.smithi017.stderr:Unit chronyd.service is enabled and running 2023-12-06T03:48:05.809 INFO:teuthology.orchestra.run.smithi017.stderr:Repeating the final host check... 2023-12-06T03:48:05.853 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: 3.2.3 2023-12-06T03:48:05.950 INFO:teuthology.orchestra.run.smithi017.stderr:podman (/bin/podman) version 3.2.3 is present 2023-12-06T03:48:05.950 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl is present 2023-12-06T03:48:05.950 INFO:teuthology.orchestra.run.smithi017.stderr:lvcreate is present 2023-12-06T03:48:05.958 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-12-06T03:48:05.961 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:48:05.968 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: enabled 2023-12-06T03:48:05.973 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: active 2023-12-06T03:48:05.974 INFO:teuthology.orchestra.run.smithi017.stderr:Unit chronyd.service is enabled and running 2023-12-06T03:48:05.974 INFO:teuthology.orchestra.run.smithi017.stderr:Host looks OK 2023-12-06T03:48:05.974 INFO:teuthology.orchestra.run.smithi017.stderr:Cluster fsid: 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:05.975 INFO:teuthology.orchestra.run.smithi017.stderr:Acquiring lock 139830682529864 on /run/cephadm/419dd438-93ea-11ee-95a2-87774f69a715.lock 2023-12-06T03:48:05.975 INFO:teuthology.orchestra.run.smithi017.stderr:Lock 139830682529864 acquired on /run/cephadm/419dd438-93ea-11ee-95a2-87774f69a715.lock 2023-12-06T03:48:05.975 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying IP 172.21.15.17 port 3300 ... 2023-12-06T03:48:05.975 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying IP 172.21.15.17 port 6789 ... 2023-12-06T03:48:05.975 INFO:teuthology.orchestra.run.smithi017.stderr:Base mon IP(s) is [172.21.15.17:3300, 172.21.15.17:6789], mon addrv is [v2:172.21.15.17:3300,v1:172.21.15.17:6789] 2023-12-06T03:48:05.979 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: default via 172.21.15.254 dev ens1f0 proto dhcp metric 100 2023-12-06T03:48:05.979 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.17 metric 100 2023-12-06T03:48:05.982 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2023-12-06T03:48:05.982 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2023-12-06T03:48:05.982 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1799sec hoplimit 64 pref medium 2023-12-06T03:48:05.984 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2023-12-06T03:48:05.984 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: inet6 ::1/128 scope host 2023-12-06T03:48:05.984 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: 4: ens1f0: mtu 1500 state UP qlen 1000 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: inet6 fe80::ec4:7aff:fe59:d992/64 scope link noprefixroute 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:Mon IP `172.21.15.17` is in CIDR network `172.21.0.0/20` 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:Mon IP `172.21.15.17` is in CIDR network `172.21.0.0/20` 2023-12-06T03:48:05.985 INFO:teuthology.orchestra.run.smithi017.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2023-12-06T03:48:05.988 INFO:teuthology.orchestra.run.smithi017.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2023-12-06T03:48:05.988 INFO:teuthology.orchestra.run.smithi017.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b... 2023-12-06T03:48:06.069 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b... 2023-12-06T03:48:06.170 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Getting image source signatures 2023-12-06T03:48:06.290 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Copying blob sha256:d3e436ac93e4b5a6d94c7ac8024df331e66e67275836276615dc044fd3cbf83a 2023-12-06T03:48:06.373 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Copying blob sha256:b1235e3ee18aefef6342f56e6c3e5655057e4e6328c3cc2d5948bab1aa11c4ed 2023-12-06T03:48:25.064 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Copying config sha256:f9c9e8cc8fe86e995b4caeb65b90dac9fddf95aa13e17c59a0a6f8e0e3c59657 2023-12-06T03:48:25.121 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Writing manifest to image destination 2023-12-06T03:48:25.121 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: Storing signatures 2023-12-06T03:48:36.264 INFO:teuthology.orchestra.run.smithi017.stderr:/bin/podman: f9c9e8cc8fe86e995b4caeb65b90dac9fddf95aa13e17c59a0a6f8e0e3c59657 2023-12-06T03:48:37.149 INFO:teuthology.orchestra.run.smithi017.stderr:ceph: ceph version 16.2.14-335-gd03fca4f (d03fca4f35d43f61b4679936aef7bd2f01cced0b) pacific (stable) 2023-12-06T03:48:37.706 INFO:teuthology.orchestra.run.smithi017.stderr:Ceph version: ceph version 16.2.14-335-gd03fca4f (d03fca4f35d43f61b4679936aef7bd2f01cced0b) pacific (stable) 2023-12-06T03:48:37.706 INFO:teuthology.orchestra.run.smithi017.stderr:Extracting ceph user uid/gid from container image... 2023-12-06T03:48:38.160 INFO:teuthology.orchestra.run.smithi017.stderr:stat: 167 167 2023-12-06T03:48:38.550 INFO:teuthology.orchestra.run.smithi017.stderr:Creating initial keys... 2023-12-06T03:48:38.961 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-authtool: AQAW729l8XVjOBAAr+JdK6bJujcVzNYseyH1DQ== 2023-12-06T03:48:39.889 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-authtool: AQAX729l/2cwLRAAzW0A8Wj36RS1Yj/mLWYrSA== 2023-12-06T03:48:40.769 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-authtool: AQAY729lqHO2KhAAZbYz4+p1zmvMC1vroTcqKQ== 2023-12-06T03:48:41.182 INFO:teuthology.orchestra.run.smithi017.stderr:Creating initial monmap... 2023-12-06T03:48:41.641 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2023-12-06T03:48:41.641 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:41.642 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-12-06T03:48:42.025 INFO:teuthology.orchestra.run.smithi017.stderr:monmaptool for smithi017 [v2:172.21.15.17:3300,v1:172.21.15.17:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2023-12-06T03:48:42.025 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/monmaptool: set fsid to 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:42.025 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-12-06T03:48:42.025 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:48:42.025 INFO:teuthology.orchestra.run.smithi017.stderr:Creating mon... 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.435+0000 7f9aa1921880 0 set uid:gid to 167:167 (ceph:ceph) 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.436+0000 7f9aa1921880 1 imported monmap: 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: epoch 0 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: last_changed 2023-12-06T03:48:41.621913+0000 2023-12-06T03:48:42.479 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: created 2023-12-06T03:48:41.621913+0000 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: election_strategy: 1 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0] mon.smithi017 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.436+0000 7f9aa1921880 0 /usr/bin/ceph-mon: set fsid to 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: RocksDB version: 6.8.1 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Compile date Dec 5 2023 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: DB SUMMARY 2023-12-06T03:48:42.480 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi017/store.db dir, Total Num: 0, files: 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi017/store.db: 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.error_if_exists: 0 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.create_if_missing: 1 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.paranoid_checks: 1 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.env: 0x56255339b080 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.fs: Posix File System 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.info_log: 0x562553e63380 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_file_opening_threads: 16 2023-12-06T03:48:42.481 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.statistics: (nil) 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.use_fsync: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_log_file_size: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.keep_log_file_num: 1000 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.recycle_log_file_num: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.allow_fallocate: 1 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.allow_mmap_reads: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.allow_mmap_writes: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.use_direct_reads: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.create_missing_column_families: 0 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.db_log_dir: 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi017/store.db 2023-12-06T03:48:42.482 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_subcompactions: 1 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_background_flushes: -1 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.advise_random_on_open: 1 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.db_write_buffer_size: 0 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.write_buffer_manager: 0x562553e69980 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-12-06T03:48:42.483 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-12-06T03:48:42.484 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-12-06T03:48:42.484 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.rate_limiter: (nil) 2023-12-06T03:48:42.484 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-12-06T03:48:42.484 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.wal_recovery_mode: 2 2023-12-06T03:48:42.484 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.enable_thread_tracking: 0 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.enable_pipelined_write: 0 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.unordered_write: 0 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.row_cache: None 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.wal_filter: None 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-12-06T03:48:42.485 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.allow_ingest_behind: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.preserve_deletes: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.two_write_queues: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.manual_wal_flush: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.atomic_flush: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.log_readahead_size: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_background_jobs: 2 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_background_compactions: -1 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-12-06T03:48:42.486 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_total_wal_size: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_open_files: -1 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bytes_per_sync: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_readahead_size: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Compression algorithms supported: 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kZSTD supported: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kXpressCompression supported: 0 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kLZ4HCCompression supported: 1 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kLZ4Compression supported: 1 2023-12-06T03:48:42.487 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kBZip2Compression supported: 0 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kZlibCompression supported: 1 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: kSnappyCompression supported: 1 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi017/store.db/MANIFEST-000001 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.merge_operator: 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_filter: None 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_filter_factory: None 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-12-06T03:48:42.488 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x562553d79d30) 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: index_type: 0 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: index_shortening: 1 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: checksum: 1 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_cache: 0x562553daed10 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_cache_options: 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: capacity : 536870912 2023-12-06T03:48:42.489 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_size: 4096 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: partition_filters: 0 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: verify_compression: 0 2023-12-06T03:48:42.490 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: format_version: 2 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: block_align: 0 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression: NoCompression 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.num_levels: 7 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-06T03:48:42.491 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-06T03:48:42.492 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-06T03:48:42.493 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-06T03:48:42.494 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.table_properties_collectors: 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.inplace_update_support: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.bloom_locality: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.max_successive_merges: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.ttl: 2592000 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.437+0000 7f9aa1921880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-06T03:48:42.495 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.438+0000 7f9aa1921880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi017/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.438+0000 7f9aa1921880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.439+0000 7f9aa1921880 4 rocksdb: DB pointer 0x562553e77800 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.439+0000 7f9a8a7a8700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.439+0000 7f9a8a7a8700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.496 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:42.497 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:42.498 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.440+0000 7f9aa1921880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.440+0000 7f9aa1921880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2023-12-06T03:48:42.499 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph-mon: debug 2023-12-06T03:48:42.440+0000 7f9aa1921880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi017 for mon.smithi017 2023-12-06T03:48:42.872 INFO:teuthology.orchestra.run.smithi017.stderr:create mon.smithi017 on 2023-12-06T03:48:42.998 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2023-12-06T03:48:43.109 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target → /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target. 2023-12-06T03:48:43.109 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target → /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target. 2023-12-06T03:48:43.345 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Failed to reset failed state of unit ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service: Unit ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service not loaded. 2023-12-06T03:48:43.352 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Created symlink /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target.wants/ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service → /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715@.service. 2023-12-06T03:48:43.459 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:43 smithi017 systemd[1]: Starting Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715... 2023-12-06T03:48:44.088 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: disabled 2023-12-06T03:48:44.095 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:48:44.096 INFO:teuthology.orchestra.run.smithi017.stderr:firewalld.service is not enabled 2023-12-06T03:48:44.096 INFO:teuthology.orchestra.run.smithi017.stderr:Not possible to enable service . firewalld.service is not available 2023-12-06T03:48:44.096 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mon to start... 2023-12-06T03:48:44.096 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mon... 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.032302+0000 mon.smithi017 (mon.0) 0 : 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 conmon[81067]: [INF] mkfs 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 conmon[81067]: cluster 2023-12-06T 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 conmon[81067]: 03:48:44.017634+0000 mon.smithi017 (mon.0) 1 : cluster [INF] mon.smithi017 is new leader, mons smithi017 in quorum (ranks 0) 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 bash[81028]: 009c54e15f84475c2cc68cca464e7b660c5889af567ca2321f980c9300fb0f2f 2023-12-06T03:48:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:44 smithi017 systemd[1]: Started Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715. 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: cluster: 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: id: 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: health: HEALTH_OK 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: services: 2023-12-06T03:48:44.661 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi017 (age 0.62756s) 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mgr: no daemons active 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: data: 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: pgs: 2023-12-06T03:48:44.662 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:45.037 INFO:teuthology.orchestra.run.smithi017.stderr:mon is available 2023-12-06T03:48:45.038 INFO:teuthology.orchestra.run.smithi017.stderr:Assimilating anything we can from ceph.conf... 2023-12-06T03:48:45.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.031531+0000 mon.smithi017 (mon.0) 2 : cluster [INF] mon.smithi017 is new leader, mons smithi017 in quorum (ranks 0) 2023-12-06T03:48:45.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.031654+0000 mon.smithi017 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi017=[v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0]} removed_ranks: {} 2023-12-06T03:48:45.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.033383+0000 mon.smithi017 (mon.0) 4 : cluster [DBG] fsmap 2023-12-06T03:48:45.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.035182+0000 mon.smithi017 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-12-06T03:48:45.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: cluster 2023-12-06T03:48:44.035542+0000 mon.smithi017 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2023-12-06T03:48:45.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:45 smithi017 conmon[81067]: audit 2023-12-06T03:48:44.659054+0000 mon.smithi017 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.17:0/645386771' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [global] 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: fsid = 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.17:3300,v1:172.21.15.17:6789] 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [mgr] 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [osd] 2023-12-06T03:48:45.539 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-12-06T03:48:45.540 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-12-06T03:48:45.975 INFO:teuthology.orchestra.run.smithi017.stderr:Generating new minimal ceph.conf... 2023-12-06T03:48:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:46 smithi017 conmon[81067]: audit 2023-12-06T03:48:45.534053+0000 mon.smithi017 2023-12-06T03:48:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:46 smithi017 conmon[81067]: (mon.0) 8 : audit [INF] from='client.? 172.21.15.17:0/3347021280' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-12-06T03:48:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:46 smithi017 conmon[81067]: audit 2023-12-06T03:48:45.536702+0000 mon.smithi017 (mon.0) 9 : audit [INF] from='client.? 172.21.15.17:0/3347021280' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2023-12-06T03:48:46.911 INFO:teuthology.orchestra.run.smithi017.stderr:Restarting the monitor... 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:46 smithi017 systemd[1]: Stopping Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715... 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:46 smithi017 bash[81554]: Error: no container with name or ID "ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon.smithi017" found: no such container 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 conmon[81067]: audit 2023-12-06T03:48: 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 conmon[81067]: 46.521002+0000 mon.smithi017 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.17:0/2658833539' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 conmon[81067]: debug 2023-12-06T03:48:47.278+0000 7feacb43f700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi017 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-06T03:48:47.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 conmon[81067]: debug 2023-12-06T03:48:47.278+0000 7feacb43f700 -1 mon.smithi017@0(leader) e1 *** Got Signal Terminated *** 2023-12-06T03:48:47.982 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 bash[81666]: ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon-smithi017 2023-12-06T03:48:48.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 systemd[1]: ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service: Succeeded. 2023-12-06T03:48:48.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 systemd[1]: Stopped Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715. 2023-12-06T03:48:48.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:47 smithi017 systemd[1]: Starting Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715... 2023-12-06T03:48:48.596 INFO:teuthology.orchestra.run.smithi017.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.489+0000 7f4611287880 0 set uid:gid to 167:167 (ceph:ceph) 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.489+0000 7f4611287880 0 ceph version 16.2.14-335-gd03fca4f (d03fca4f35d43f61b4679936aef7bd2f01cced0b) pacific (stable), process ceph-mon, pid 7 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.489+0000 7f4611287880 0 pidfile_write: ignore empty --pid-file 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 bash[81979]: 9c870a2d86bdd675940d193dc245958b5f307cf98700cacd0e9816fabd1cdf8b 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.493+0000 7f4611287880 0 load: jerasure load: lrc load: isa 2023-12-06T03:48:48.813 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: RocksDB version: 6.8.1 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Compile date Dec 5 2023 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: DB SUMMARY 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.814 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: CURRENT file: CURRENT 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: IDENTITY file: IDENTITY 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi017/store.db dir, Total Num: 1, files: 000004.sst 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi017/store.db: 000006.log size: 86497 ; 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.error_if_exists: 0 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.create_if_missing: 0 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.paranoid_checks: 1 2023-12-06T03:48:48.815 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.env: 0x55d6aba06080 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.fs: Posix File System 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.info_log: 0x55d6aca27d20 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_file_opening_threads: 16 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.statistics: (nil) 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.use_fsync: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_log_file_size: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.keep_log_file_num: 1000 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.recycle_log_file_num: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.allow_fallocate: 1 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.allow_mmap_reads: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.allow_mmap_writes: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.use_direct_reads: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.create_missing_column_families: 0 2023-12-06T03:48:48.816 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.db_log_dir: 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi017/store.db 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_subcompactions: 1 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_background_flushes: -1 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.advise_random_on_open: 1 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.db_write_buffer_size: 0 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.write_buffer_manager: 0x55d6ad67e480 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-12-06T03:48:48.817 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.rate_limiter: (nil) 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.wal_recovery_mode: 2 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.enable_thread_tracking: 0 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.enable_pipelined_write: 0 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.unordered_write: 0 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-12-06T03:48:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.row_cache: None 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.wal_filter: None 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.allow_ingest_behind: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.preserve_deletes: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.two_write_queues: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.manual_wal_flush: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.atomic_flush: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.log_readahead_size: 0 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_background_jobs: 2 2023-12-06T03:48:48.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_background_compactions: -1 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_total_wal_size: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_open_files: -1 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bytes_per_sync: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_readahead_size: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Compression algorithms supported: 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kZSTD supported: 0 2023-12-06T03:48:48.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kXpressCompression supported: 0 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kLZ4HCCompression supported: 1 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kLZ4Compression supported: 1 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kBZip2Compression supported: 0 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kZlibCompression supported: 1 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: kSnappyCompression supported: 1 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi017/store.db/MANIFEST-000005 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.merge_operator: 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_filter: None 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_filter_factory: None 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-12-06T03:48:48.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d6ac9d7d28) 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cache_index_and_filter_blocks: 1 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cache_index_and_filter_blocks_with_high_priority: 0 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: pin_l0_filter_and_index_blocks_in_cache: 0 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: pin_top_level_index_and_filter: 1 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: index_type: 0 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: data_block_index_type: 0 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: index_shortening: 1 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: data_block_hash_table_util_ratio: 0.750000 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: hash_index_allow_collision: 1 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: checksum: 1 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: no_block_cache: 0 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_cache: 0x55d6aca0cf10 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_cache_name: BinnedLRUCache 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_cache_options: 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: capacity : 536870912 2023-12-06T03:48:48.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: num_shard_bits : 4 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: strict_capacity_limit : 0 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: high_pri_pool_ratio: 0.000 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_cache_compressed: (nil) 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: persistent_cache: (nil) 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_size: 4096 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_size_deviation: 10 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_restart_interval: 16 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: index_block_restart_interval: 1 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: metadata_block_size: 4096 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: partition_filters: 0 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: use_delta_encoding: 1 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: filter_policy: rocksdb.BuiltinBloomFilter 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: whole_key_filtering: 1 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: verify_compression: 0 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: read_amp_bytes_per_bit: 0 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: format_version: 2 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: enable_index_compression: 1 2023-12-06T03:48:48.824 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: block_align: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression: NoCompression 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.num_levels: 7 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:48:48.825 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-06T03:48:48.826 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-06T03:48:48.827 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.table_properties_collectors: 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.inplace_update_support: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.bloom_locality: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.max_successive_merges: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-06T03:48:48.828 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.ttl: 2592000 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.494+0000 7f4611287880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.495+0000 7f4611287880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi017/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.495+0000 7f4611287880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.495+0000 7f4611287880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834528496743, "job": 1, "event": "recovery_started", "log_files": [6]} 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.495+0000 7f4611287880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.496+0000 7f4611287880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.496+0000 7f4611287880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834528498043, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83370, "table_properties": {"data_size": 81637, "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": 76149, "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": 1701834528, "oldest_key_time": 3, "file_creation_time": 0}} 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.496+0000 7f4611287880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.497+0000 7f4611287880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834528498643, "job": 1, "event": "recovery_finished"} 2023-12-06T03:48:48.829 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.498+0000 7f4611287880 4 rocksdb: DB pointer 0x55d6acad5800 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.498+0000 7f45f808d700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.498+0000 7f45f808d700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** DB Stats ** 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** Compaction Stats [default] ** 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: L0 2/0 83.11 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.830 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Sum 2/0 83.11 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** Compaction Stats [default] ** 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Cumulative compaction: 0.00 GB write, 19.76 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Interval compaction: 0.00 GB write, 19.76 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:48:48.831 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** Compaction Stats [default] ** 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: L0 2/0 83.11 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Sum 2/0 83.11 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** Compaction Stats [default] ** 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 96.4 0.00 0.00 1 0.001 0 0 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:48:48.832 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Cumulative compaction: 0.00 GB write, 19.63 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.499+0000 7f4611287880 0 starting mon.smithi017 rank 0 at public addrs [v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0] at bind addrs [v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi017 fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 1 mon.smithi017@-1(???) e1 preinit fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).mds e1 new map 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).mds e1 print_map 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: e1 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: enable_multiple, ever_enabled_multiple: 1,1 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: legacy client fscid: -1 2023-12-06T03:48:48.833 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: No filesystems configured 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 0 mon.smithi017@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: audit 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: :48:46.521002+0000 mon.smithi017 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: (mon.0) 10 : audit 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: [DBG] from='client.? 172.21.15.17:0/2658833539' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: debug 2023-12-06T03:48:48.501+0000 7f4611287880 1 mon.smithi017@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cluster 2023-12-06T03:48:48 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: .518745+0000 mon.smithi017 (mon.0) 1 : cluster [INF] mon.smithi017 is new leader, mons smithi017 in quorum (ranks 0) 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 03:48:48.518787+0000 mon.smithi017 (mon.0) 2 : cluster [DBG] 2023-12-06T03:48:48.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: monmap e1: 1 mons at {smithi017=[v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0]} removed_ranks: {} 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cluster 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.519181+0000 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: mon.smithi017 (mon.0) 3 : cluster [DBG] 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: fsmap 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cluster 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03: 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 48:48.519213+0000 mon.smithi017 (mon.0 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: ) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: cluster 2023-12 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: -06T03:48:48.519504+0000 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: mon.smithi017 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 conmon[82019]: 2023-12-06T03:48:48.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:48 smithi017 systemd[1]: Started Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715. 2023-12-06T03:48:49.539 INFO:teuthology.orchestra.run.smithi017.stderr:Wrote config to /etc/ceph/ceph.conf 2023-12-06T03:48:49.539 INFO:teuthology.orchestra.run.smithi017.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2023-12-06T03:48:49.539 INFO:teuthology.orchestra.run.smithi017.stderr:Creating mgr... 2023-12-06T03:48:49.540 INFO:teuthology.orchestra.run.smithi017.stderr:Verifying port 9283 ... 2023-12-06T03:48:49.683 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Failed to reset failed state of unit ceph-419dd438-93ea-11ee-95a2-87774f69a715@mgr.smithi017.mljnlu.service: Unit ceph-419dd438-93ea-11ee-95a2-87774f69a715@mgr.smithi017.mljnlu.service not loaded. 2023-12-06T03:48:49.689 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: Created symlink /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715.target.wants/ceph-419dd438-93ea-11ee-95a2-87774f69a715@mgr.smithi017.mljnlu.service → /etc/systemd/system/ceph-419dd438-93ea-11ee-95a2-87774f69a715@.service. 2023-12-06T03:48:50.410 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:50 smithi017 conmon[82019]: audit 2023-12-06T03:48:49.152757 2023-12-06T03:48:50.473 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:50 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 6 : audit [INF] from='client.? 172.21.15.17:0/3925105247' entity='client.admin' 2023-12-06T03:48:50.474 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: disabled 2023-12-06T03:48:50.474 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:firewalld.service is not enabled 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:Not possible to enable service . firewalld.service is not available 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: disabled 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:firewalld.service is not enabled 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mgr to start... 2023-12-06T03:48:50.475 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mgr... 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsid": "419dd438-93ea-11ee-95a2-87774f69a715", 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "health": { 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-06T03:48:50.992 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "checks": {}, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mutes": [] 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum": [ 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 0 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "smithi017" 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_age": 2, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "monmap": { 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osdmap": { 2023-12-06T03:48:50.993 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:50.994 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-06T03:48:50.994 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-06T03:48:50.994 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-06T03:48:50.994 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgmap": { 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-06T03:48:50.997 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsmap": { 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "available": false, 2023-12-06T03:48:50.998 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modules": [ 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "iostat", 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "nfs", 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "restful" 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "servicemap": { 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modified": "2023-12-06T03:48:44.032670+0000", 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-06T03:48:50.999 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:48:51.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:51 smithi017 conmon[82019]: audit 2023-12-06T03:48:50.988272+0000 mon.smithi017 ( 2023-12-06T03:48:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:51 smithi017 conmon[82019]: mon.0) 7 : audit [DBG] from='client.? 172.21.15.17:0/1981168336' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-06T03:48:51.395 INFO:teuthology.orchestra.run.smithi017.stderr:mgr not available, waiting (1/15)... 2023-12-06T03:48:53.927 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:53.927 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:48:53.927 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsid": "419dd438-93ea-11ee-95a2-87774f69a715", 2023-12-06T03:48:53.927 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "health": { 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "checks": {}, 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mutes": [] 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum": [ 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 0 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "smithi017" 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_age": 5, 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "monmap": { 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-06T03:48:53.928 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osdmap": { 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-06T03:48:53.929 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgmap": { 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-06T03:48:53.932 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsmap": { 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "available": false, 2023-12-06T03:48:53.933 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modules": [ 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "iostat", 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "nfs", 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "restful" 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "servicemap": { 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modified": "2023-12-06T03:48:44.032670+0000", 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-06T03:48:53.934 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:48:54.335 INFO:teuthology.orchestra.run.smithi017.stderr:mgr not available, waiting (2/15)... 2023-12-06T03:48:54.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:54 smithi017 conmon[82019]: audit 2023-12-06T03:48:53.924425+0000 mon.smithi017 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.17:0/2945547970' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: cluster 2023-12-06T03:48:55.938193+0000 mon.smithi017 (mon.0) 9 : cluster [INF] Activating manager daemon smithi017.mljnlu 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: cluster 2023-12-06T03:48:55.940628+0000 mon.smithi017 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi017.mljnlu(active, starting, since 0.00251842s) 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 2023-12-06T03:48:55.941467+0000 mon.smithi017 (mon.0) 11 : audit 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: [DBG] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-06T03:48:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 2023-12-06T03:48:55.941630+0000 mon.smithi017 ( 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48: 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 55.941742+0000 mon.smithi017 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: T03:48:55.941854+0000 mon.smithi017 (mon.0) 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 14 : audit [DBG] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 2023-12-06T03:48:55.942311+0000 mon.smithi017 (mon 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: .0) 15 : audit [DBG] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi017.mljnlu", "id": "smithi017.mljnlu"}]: dispatch 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: cluster 2023-12-06T03:48:55 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: .944253+0000 mon.smithi017 (mon.0) 16 : cluster [INF] Manager daemon smithi017.mljnlu is now available 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 03:48:55.954361+0000 mon.smithi017 (mon.0) 17 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: : audit [INF] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' 2023-12-06T03:48:56.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 2023-12-06T03:48:55.959002+0000 mon.smithi017 (mon 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: .0) 18 : audit [INF] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/mirror_snapshot_schedule"}]: dispatch 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48: 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 55.961688+0000 mon.smithi017 (mon.0) 19 : audit 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: [INF] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/trash_purge_schedule"}]: dispatch 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: 2023-12-06T03:48:55.963896+0000 mon.smithi017 (mon.0 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: ) 20 : audit [INF] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit 2023-12-06T03 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: :48:55.965506+0000 mon.smithi017 (mon.0) 21 : 2023-12-06T03:48:56.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:55 smithi017 conmon[82019]: audit [INF] from='mgr.14100 172.21.15.17:0/2667205780' entity='mgr.smithi017.mljnlu' 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsid": "419dd438-93ea-11ee-95a2-87774f69a715", 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "health": { 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "checks": {}, 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mutes": [] 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum": [ 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 0 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:57.893 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "smithi017" 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "quorum_age": 9, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "monmap": { 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osdmap": { 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-06T03:48:57.894 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgmap": { 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "fsmap": { 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-06T03:48:57.895 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "available": true, 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modules": [ 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "iostat", 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "nfs", 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "restful" 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ], 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "servicemap": { 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "modified": "2023-12-06T03:48:44.032670+0000", 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "services": {} 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: }, 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-06T03:48:57.896 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:48:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:57 smithi017 conmon[82019]: cluster 2023-12-06T03:48:56.944955+0000 mon.smithi017 ( 2023-12-06T03:48:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:57 smithi017 conmon[82019]: mon.0) 22 : cluster [DBG] mgrmap e3: smithi017.mljnlu(active, since 1.00684s) 2023-12-06T03:48:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:57 smithi017 conmon[82019]: audit 2023-12-06T03:48:57.886741+0000 mon.smithi017 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.17:0/849552419' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-06T03:49:00.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:59 smithi017 conmon[82019]: cluster 2023-12-06T03:48:58.944715+0000 mon.smithi017 (mon.0) 24 : 2023-12-06T03:49:00.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:48:59 smithi017 conmon[82019]: cluster [DBG] mgrmap e4: smithi017.mljnlu(active, since 3s) 2023-12-06T03:49:00.281 INFO:teuthology.orchestra.run.smithi017.stderr:mgr is available 2023-12-06T03:49:01.803 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:49:01.803 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [global] 2023-12-06T03:49:01.803 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: fsid = 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [mgr] 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: [osd] 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-12-06T03:49:01.804 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-12-06T03:49:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:01 smithi017 conmon[82019]: audit 2023-12-06T03:49:01. 2023-12-06T03:49:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:01 smithi017 conmon[82019]: 801038+0000 mon.smithi017 (mon.0) 25 : audit [INF] from='client.? 172.21.15.17:0/130072722' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-12-06T03:49:04.127 INFO:teuthology.orchestra.run.smithi017.stderr:Enabling cephadm module... 2023-12-06T03:49:06.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:06 smithi017 conmon[82019]: audit 2023-12-06T03:49:06.187710+0000 mon.smithi017 (mon.0) 26 : 2023-12-06T03:49:06.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:06 smithi017 conmon[82019]: audit [INF] from='client.? 172.21.15.17:0/297502857' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2023-12-06T03:49:07.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:07 smithi017 conmon[82019]: audit 2023-12-06T03:49:06.241006+0000 mon.smithi017 (mon.0) 27 : audit [INF] from='client.? 172.21.15.17:0/297502857' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2023-12-06T03:49:07.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:07 smithi017 conmon[82019]: cluster 2023-12-06T03:49:06.241060+0000 mon.smithi017 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi017.mljnlu(active, since 10s) 2023-12-06T03:49:08.909 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:49:08.909 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 5, 2023-12-06T03:49:08.910 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "available": true, 2023-12-06T03:49:08.910 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "active_name": "smithi017.mljnlu", 2023-12-06T03:49:08.910 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_standby": 0 2023-12-06T03:49:08.910 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:49:09.317 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for the mgr to restart... 2023-12-06T03:49:09.317 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mgr epoch 5... 2023-12-06T03:49:09.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:09 smithi017 conmon[82019]: audit 2023-12-06T03:49:08.907225+0000 2023-12-06T03:49:09.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:09 smithi017 conmon[82019]: mon.smithi017 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.17:0/897211039' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-12-06T03:49:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: cluster 2023-12-06T03:49:11.841816+0000 mon.smithi017 (mon.0 2023-12-06T03:49:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: ) 30 : cluster [INF] Active manager daemon smithi017.mljnlu restarted 2023-12-06T03:49:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: cluster 2023-12-06T03:49:11.842045+0000 mon.smithi017 (mon.0) 31 : cluster [INF] Activating manager daemon smithi017.mljnlu 2023-12-06T03:49:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: cluster 2023- 2023-12-06T03:49:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: 12-06T03:49:11.844779+0000 mon.smithi017 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: cluster 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: 2023-12-06T03:49:11.844884+0000 mon.smithi017 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi017.mljnlu(active, starting, since 0.0029146s) 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: 03:49:11.845851+0000 mon.smithi017 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T03:49:11.846582 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi017.mljnlu", "id": "smithi017.mljnlu"}]: dispatch 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T03:49:11.847248 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T03:49:11.847405+0000 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: mon.smithi017 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T03:49:11.847553+0000 mon.smithi017 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: cluster 2023-12-06T03:49:11.861580+0000 mon.smithi017 (mon.0 2023-12-06T03:49:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: ) 39 : cluster [INF] Manager daemon smithi017.mljnlu is now available 2023-12-06T03:49:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: audit 2023-12-06T03:49:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: 2023-12-06T03:49:11.875214+0000 mon.smithi017 (mon.0) 40 : audit 2023-12-06T03:49:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:11 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:12.855 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:49:12.855 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2023-12-06T03:49:12.855 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "initialized": true 2023-12-06T03:49:12.855 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:49:13.191 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: cephadm 2023-12-06T03:49: 2023-12-06T03:49:13.191 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 11.872764+0000 mgr.smithi017.mljnlu (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2023-12-06T03:49:13.191 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023-12-06T03:49:11.966532+0000 2023-12-06T03:49:13.191 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: mon.smithi017 (mon.0) 41 : audit [INF] 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 12-06T03:49:11.967558+0000 mon.smithi017 (mon 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: .0) 42 : audit [DBG] 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 2023-12-06T03:49: 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 11.969131+0000 mon.smithi017 (mon.0 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: ) 43 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 12-06T03:49:11.971035+0000 mon.smithi017 ( 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: mon.0) 44 : audit [DBG] 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:13.192 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 12-06T03:49:11.984797+0000 mon.smithi017 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: (mon.0) 45 : audit 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/mirror_snapshot_schedule"}]: dispatch 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 12-06T03:49:11.987442+0000 mon.smithi017 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: (mon.0) 46 : audit 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/trash_purge_schedule"}]: dispatch 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: cluster 2023- 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: 12-06T03:49:12.847847+0000 mon.smithi017 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: (mon.0) 47 : cluster 2023-12-06T03:49:13.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:12 smithi017 conmon[82019]: [DBG] mgrmap e7: smithi017.mljnlu(active, since 1.00587s) 2023-12-06T03:49:13.256 INFO:teuthology.orchestra.run.smithi017.stderr:mgr epoch 5 is available 2023-12-06T03:49:13.256 INFO:teuthology.orchestra.run.smithi017.stderr:Setting orchestrator backend to cephadm... 2023-12-06T03:49:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:13 smithi017 conmon[82019]: audit 2023-12-06T03:49:12.846882+0000 mgr.smithi017.mljnlu (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-12-06T03:49:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:13 smithi017 conmon[82019]: audit 2023-12-06T03:49:12.854113+0000 mgr.smithi017.mljnlu (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-12-06T03:49:15.042 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: value unchanged 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: audit 2023-12-06T03:49:13.989231+0000 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: audit 2023-12-06T03:49:13.992946+0000 mon.smithi017 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: audit 2023-12-06T03:49:14.045431+0000 mon.smithi017 (mon.0) 49 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: cluster 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: 2023-12-06T03:49:14.511783+0000 mon.smithi017 (mon.0) 50 2023-12-06T03:49:15.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:14 smithi017 conmon[82019]: : cluster [DBG] mgrmap e8: smithi017.mljnlu(active, since 2s) 2023-12-06T03:49:15.432 INFO:teuthology.orchestra.run.smithi017.stderr:Generating ssh key... 2023-12-06T03:49:16.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:15 smithi017 conmon[82019]: audit 2023-12-06T03:49:15.041913+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:49:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:15 smithi017 conmon[82019]: mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:17.274 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: audit 2023-12-06T03:49:16.110786+0000 mgr.smithi017.mljnlu (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:16.111005+0000 mgr.smithi017.mljnlu (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: audit 2023-12-06T03:49:16. 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: 703127+0000 mon.smithi017 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: audit 2023-12-06T03 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: :49:16.704770+0000 mon.smithi017 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: (mon.0) 52 : audit 2023-12-06T03:49:17.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:16 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:17.716 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXyL/jGVMrhB6CCZqzKrC+TlnNwYpzdtM6KqiESYwWeHIoAdnzg1nCnQs0/DxPFUcNZPtyZgZcUIJm+/nr70WHJzmMQYvfSM/7WGzVuksFFRLehrMrwv89zQ4BkI2F7zj/J30QAv13SkvoMmZkzXOVvNQ9sTy03Y9PR5lVli31Nm3iDRpej/ReU9ttt2iNh3/nah4DBjCFBpEsmdsqyrHT341ntHkGZafJqDvBP+cKWaODrRTpdM7QsGonLaqAs08kzCj5mzfQdBUQ26Nj5NDU8cM10E6jveh2wdJejjO1z2smqxPMWcoCYxpXi26JKJ/VUBywA4FkQC+RUqFFES4sCswgL0qIDUe+R5mw9KkgMTTbTKofBuopzQcBTwnSQ/l25jhNeckAsXiEhmYAM2tN53OQilJg2L34bv7aqUiV8imrwglFf5uypNVoU3I96Pm41cdEFzdNqj9H05CzIqS9TvPVK4wVlcBzOGSdTJKgg3iWt+njdXKKtw+vY2piSWs= ceph-419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:49:18.105 INFO:teuthology.orchestra.run.smithi017.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2023-12-06T03:49:18.105 INFO:teuthology.orchestra.run.smithi017.stderr:Adding key to root@localhost authorized_keys... 2023-12-06T03:49:18.107 INFO:teuthology.orchestra.run.smithi017.stderr:Adding host smithi017... 2023-12-06T03:49:18.376 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:18 smithi017 conmon[82019]: audit 2023-12-06T03:49:17.714932+0000 2023-12-06T03:49:18.376 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:18 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:19.545 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Added host 'smithi017' with addr '172.21.15.17' 2023-12-06T03:49:19.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:19 smithi017 conmon[82019]: audit 2023-12-06T03:49:18.797815+0000 mgr.smithi017.mljnlu (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi017", "addr": "172.21.15.17", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:19.944 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying mon service with default placement... 2023-12-06T03:49:20.624 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled mon update... 2023-12-06T03:49:20.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:20 smithi017 conmon[82019]: audit 2023-12-06T03:49:19.542536+0000 mon.smithi017 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:20.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:20 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:19.542842+0000 mgr.smithi017.mljnlu (mgr.14116) 10 : cephadm [INF] Added host smithi017 2023-12-06T03:49:20.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:20 smithi017 conmon[82019]: audit 2023-12-06T03:49:19.571838+0000 mon.smithi017 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:20.981 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying mgr service with default placement... 2023-12-06T03:49:21.755 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled mgr update... 2023-12-06T03:49:21.778 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:21 smithi017 conmon[82019]: audit 2023-12-06T03:49:20.619416+0000 mgr.smithi017.mljnlu (mgr.14116) 11 : 2023-12-06T03:49:21.779 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:21 smithi017 conmon[82019]: audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:21.779 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:21 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:20.620645+0000 mgr.smithi017.mljnlu (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2023-12-06T03:49:21.779 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:21 smithi017 conmon[82019]: audit 2023-12-06T03:49:20.622730+0000 mon.smithi017 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:22.263 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying crash service with default placement... 2023-12-06T03:49:23.018 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled crash update... 2023-12-06T03:49:23.046 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: audit 2023-12-06T03:49:21.750924+0000 mgr.smithi017.mljnlu 2023-12-06T03:49:23.046 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:23.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:21.751771+0000 mgr.smithi017.mljnlu (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2023-12-06T03:49:23.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: audit 2023-12-06T03:49:21.753805+0000 mon.smithi017 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:23.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: audit 2023-12-06T03:49:21.984668+0000 mon.smithi017 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:23.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:22 smithi017 conmon[82019]: audit 2023-12-06T03:49:22.349918+0000 mon.smithi017 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:23.701 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying prometheus service with default placement... 2023-12-06T03:49:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:24 smithi017 conmon[82019]: audit 2023-12-06T03:49 2023-12-06T03:49:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:24 smithi017 conmon[82019]: :23.014408+0000 mgr.smithi017.mljnlu (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:24 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:23.015378+0000 mgr.smithi017.mljnlu (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2023-12-06T03:49:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:24 smithi017 conmon[82019]: audit 2023-12-06T03:49:23.017578+0000 mon.smithi017 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:24.552 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled prometheus update... 2023-12-06T03:49:24.888 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying grafana service with default placement... 2023-12-06T03:49:25.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:25 smithi017 conmon[82019]: audit 2023-12-06T03:49:24.024978+0000 mon.smithi017 ( 2023-12-06T03:49:25.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:25 smithi017 conmon[82019]: mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:25.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:25 smithi017 conmon[82019]: audit 2023-12-06T03:49:24.551174+0000 mon.smithi017 (mon.0) 61 : audit 2023-12-06T03:49:25.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:25 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:25.718 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled grafana update... 2023-12-06T03:49:26.126 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying node-exporter service with default placement... 2023-12-06T03:49:26.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: audit 2023-12-06T03:49: 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: 24.547848+0000 mgr.smithi017.mljnlu (mgr.14116) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: 2023-12-06T03:49:24.549079 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14116) 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: 18 : cephadm [INF] Saving service prometheus spec with placement count:1 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: audit 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: 2023- 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: 12-06T03:49:25.717062+0000 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 62 : audit 2023-12-06T03:49:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:26 smithi017 conmon[82019]: [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:26.763 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2023-12-06T03:49:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:27 smithi017 conmon[82019]: audit 2023-12-06T03:49:25.713694+0000 mgr.smithi017.mljnlu 2023-12-06T03:49:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:27 smithi017 conmon[82019]: (mgr.14116) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:25.714930+0000 mgr.smithi017.mljnlu (mgr.14116) 20 : cephadm [INF] Saving service grafana spec with placement count:1 2023-12-06T03:49:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:27 smithi017 conmon[82019]: audit 2023-12-06T03:49:26.761794+0000 mon.smithi017 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:27.161 INFO:teuthology.orchestra.run.smithi017.stderr:Deploying alertmanager service with default placement... 2023-12-06T03:49:27.793 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: audit 2023-12-06T03:49:26.758747+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: mgr.14116) 21 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:26.759574+0000 mgr.smithi017.mljnlu (mgr.14116) 22 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: : cephadm [INF] Saving service node-exporter spec with placement * 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: 12-06T03:49:27.792192+0000 mon.smithi017 (mon. 2023-12-06T03:49:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:28 smithi017 conmon[82019]: 0) 64 : audit [INF] from='mgr.14116 172.21.15.17:0/3760257664' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: audit 2023-12-06T03:49:27.789096+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: mgr.14116) 23 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:27.789945+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: .14116) 24 : cephadm [INF] Saving service alertmanager spec with placement count:1 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: audit 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: 2023-12-06T03:49:28.797272+0000 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: mon.smithi017 (mon.0) 65 : audit [INF] 2023-12-06T03:49:29.223 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:29 smithi017 conmon[82019]: from='client.? 172.21.15.17:0/1611212929' entity='client.admin' 2023-12-06T03:49:30.270 INFO:teuthology.orchestra.run.smithi017.stderr:Enabling the dashboard module... 2023-12-06T03:49:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:30 smithi017 conmon[82019]: audit 2023-12-06T03:49:29.849008+0000 mon.smithi017 ( 2023-12-06T03:49:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:30 smithi017 conmon[82019]: mon.0) 66 : audit [INF] from='client.? 172.21.15.17:0/2518526359' entity='client.admin' 2023-12-06T03:49:32.115 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:31 smithi017 conmon[82019]: audit 2023-12-06T03:49:30.953199+0000 mon.smithi017 (mon. 2023-12-06T03:49:32.115 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:31 smithi017 conmon[82019]: 0) 67 : audit [INF] from='client.? 172.21.15.17:0/158373671' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2023-12-06T03:49:32.921 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:49:32.921 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "epoch": 9, 2023-12-06T03:49:32.921 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "available": true, 2023-12-06T03:49:32.921 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "active_name": "smithi017.mljnlu", 2023-12-06T03:49:32.921 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "num_standby": 0 2023-12-06T03:49:32.922 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:49:33.114 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:32 smithi017 conmon[82019]: audit 2023-12-06T03:49:31.853357+0000 mon.smithi017 (mon.0) 2023-12-06T03:49:33.114 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:32 smithi017 conmon[82019]: 68 : audit [INF] from='client.? 172.21.15.17:0/158373671' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2023-12-06T03:49:33.114 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:32 smithi017 conmon[82019]: cluster 2023-12-06T03:49:31.853462+0000 mon.smithi017 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi017.mljnlu(active, since 20s) 2023-12-06T03:49:33.349 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for the mgr to restart... 2023-12-06T03:49:33.350 INFO:teuthology.orchestra.run.smithi017.stderr:Waiting for mgr epoch 9... 2023-12-06T03:49:34.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:33 smithi017 conmon[82019]: audit 2023-12-06T03:49:32.919907+0000 mon.smithi017 (mon.0) 2023-12-06T03:49:34.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:33 smithi017 conmon[82019]: 70 : audit [DBG] from='client.? 172.21.15.17:0/2989478200' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster 2023-12-06T03:49:37.497057+0000 mon.smithi017 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: (mon.0) 71 : cluster [INF] Active manager daemon smithi017.mljnlu restarted 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster 2023-12-06T03:49:37.497301+0000 mon.smithi017 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: (mon.0) 72 : cluster [INF] Activating manager daemon smithi017.mljnlu 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster 2023- 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 12-06T03:49:37 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: .500311+0000 mon.smithi017 (mon.0) 73 : 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster 2023-12 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: -06T03:49:37. 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 500440+0000 mon.smithi017 (mon.0) 74 : cluster 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: [DBG] mgrmap e10: smithi017.mljnlu(active, starting, since 0.0032324s) 2023-12-06T03:49:37.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 06T03:49:37.501054 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 75 : audit 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: T03:49:37.501832+0000 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: mon.smithi017 (mon.0) 76 : audit [DBG] 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi017.mljnlu", "id": "smithi017.mljnlu"}]: dispatch 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: T03:49:37.502472+0000 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: mon.smithi017 (mon.0) 77 : audit [DBG] 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 03:49:37.502637+0000 mon.smithi017 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: audit 2023-12-06T03:49:37.740 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 2023-12-06T03:49:37 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: .502774+0000 mon.smithi017 (mon. 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 0) 79 : audit [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: cluster 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: 2023-12-06T03:49 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: :37.517586+0000 mon.smithi017 (mon.0 2023-12-06T03:49:37.741 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:37 smithi017 conmon[82019]: ) 80 : cluster [INF] Manager daemon smithi017.mljnlu is now available 2023-12-06T03:49:38.510 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: { 2023-12-06T03:49:38.510 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2023-12-06T03:49:38.510 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: "initialized": true 2023-12-06T03:49:38.510 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: } 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: audit 2023-12-06T03:49:37.619347 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: audit 2023-12-06T03:49:37.620780+0000 mon.smithi017 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: audit 2023-12-06T03:49:37.646895+0000 mon.smithi017 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/mirror_snapshot_schedule"}]: dispatch 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: audit 2023-12-06T03:49:37.649697+0000 mon.smithi017 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/trash_purge_schedule"}]: dispatch 2023-12-06T03:49:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:38 smithi017 conmon[82019]: cluster 2023-12-06T03:49:38.501816+0000 mon.smithi017 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi017.mljnlu(active, since 1.0046s) 2023-12-06T03:49:38.890 INFO:teuthology.orchestra.run.smithi017.stderr:mgr epoch 9 is available 2023-12-06T03:49:38.890 INFO:teuthology.orchestra.run.smithi017.stderr:Generating a dashboard self-signed certificate... 2023-12-06T03:49:39.774 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: Self-signed certificate created 2023-12-06T03:49:39.802 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:39 smithi017 conmon[82019]: audit 2023-12-06T03:49:38.501313+0000 mgr.smithi017.mljnlu (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-12-06T03:49:39.802 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:39 smithi017 conmon[82019]: audit 2023-12-06T03:49:38.507659+0000 mgr.smithi017.mljnlu (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-12-06T03:49:40.227 INFO:teuthology.orchestra.run.smithi017.stderr:Creating initial admin user... 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: cluster 2023-12-06T03:49:39. 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: 554005+0000 mon.smithi017 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi017.mljnlu(active, since 2s) 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: audit 2023-12-06T03:49:39.651998+0000 mon.smithi017 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: audit 2023-12-06T03:49:39.722588+0000 mgr.smithi017.mljnlu (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: audit 2023-12-06T03:49:39.771172+0000 mon.smithi017 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: audit 2023-12-06T03:49:39 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: .773019+0000 mon.smithi017 (mon.0) 89 : audit 2023-12-06T03:49:40.697 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:40 smithi017 conmon[82019]: [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:41.137 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$LY.8geA48Ys6crZWg/iNW.kNa5Mv0DnpG4rDTKtOpZJFVXP0D2Y1i", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1701834581, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2023-12-06T03:49:41.664 INFO:teuthology.orchestra.run.smithi017.stderr:Fetching dashboard port number... 2023-12-06T03:49:41.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:41 smithi017 conmon[82019]: audit 2023-12-06T03:49:40.889013+0000 2023-12-06T03:49:41.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:41 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14156) 4 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:41.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:41 smithi017 conmon[82019]: audit 2023-12-06T03:49:41.136835+0000 mon.smithi017 (mon.0) 90 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:42.358 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: 8443 2023-12-06T03:49:42.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:42 smithi017 conmon[82019]: audit 2023-12-06T03:49:42.356980+0000 mon.smithi017 (mon 2023-12-06T03:49:42.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:42 smithi017 conmon[82019]: .0) 91 : audit [DBG] from='client.? 172.21.15.17:0/1978049379' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2023-12-06T03:49:42.808 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: disabled 2023-12-06T03:49:42.816 INFO:teuthology.orchestra.run.smithi017.stderr:systemctl: inactive 2023-12-06T03:49:42.816 INFO:teuthology.orchestra.run.smithi017.stderr:firewalld.service is not enabled 2023-12-06T03:49:42.816 INFO:teuthology.orchestra.run.smithi017.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr:Ceph Dashboard is now available at: 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr: URL: https://smithi017.front.sepia.ceph.com:8443/ 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr: User: admin 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr: Password: qstdl7chkl 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:42.819 INFO:teuthology.orchestra.run.smithi017.stderr:Enabling autotune for osd_memory_target 2023-12-06T03:49:44.598 INFO:teuthology.orchestra.run.smithi017.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2023-12-06T03:49:45.093 INFO:teuthology.orchestra.run.smithi017.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr:Or, if you are only running a single cluster on this host: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr:Please consider enabling telemetry to help improve Ceph: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: ceph telemetry on 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr:For more information see: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.094 INFO:teuthology.orchestra.run.smithi017.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2023-12-06T03:49:45.095 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T03:49:45.095 INFO:teuthology.orchestra.run.smithi017.stderr:Bootstrap complete. 2023-12-06T03:49:45.129 INFO:tasks.cephadm:Fetching config... 2023-12-06T03:49:45.130 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:49:45.130 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2023-12-06T03:49:45.145 INFO:tasks.cephadm:Fetching client.admin keyring... 2023-12-06T03:49:45.145 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:49:45.145 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2023-12-06T03:49:45.201 INFO:tasks.cephadm:Fetching mon keyring... 2023-12-06T03:49:45.201 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:49:45.201 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/keyring of=/dev/stdout 2023-12-06T03:49:45.266 INFO:tasks.cephadm:Fetching pub ssh key... 2023-12-06T03:49:45.267 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:49:45.267 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2023-12-06T03:49:45.324 INFO:tasks.cephadm:Installing pub ssh key for root users... 2023-12-06T03:49:45.325 DEBUG:teuthology.orchestra.run.smithi017:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXyL/jGVMrhB6CCZqzKrC+TlnNwYpzdtM6KqiESYwWeHIoAdnzg1nCnQs0/DxPFUcNZPtyZgZcUIJm+/nr70WHJzmMQYvfSM/7WGzVuksFFRLehrMrwv89zQ4BkI2F7zj/J30QAv13SkvoMmZkzXOVvNQ9sTy03Y9PR5lVli31Nm3iDRpej/ReU9ttt2iNh3/nah4DBjCFBpEsmdsqyrHT341ntHkGZafJqDvBP+cKWaODrRTpdM7QsGonLaqAs08kzCj5mzfQdBUQ26Nj5NDU8cM10E6jveh2wdJejjO1z2smqxPMWcoCYxpXi26JKJ/VUBywA4FkQC+RUqFFES4sCswgL0qIDUe+R5mw9KkgMTTbTKofBuopzQcBTwnSQ/l25jhNeckAsXiEhmYAM2tN53OQilJg2L34bv7aqUiV8imrwglFf5uypNVoU3I96Pm41cdEFzdNqj9H05CzIqS9TvPVK4wVlcBzOGSdTJKgg3iWt+njdXKKtw+vY2piSWs= ceph-419dd438-93ea-11ee-95a2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-12-06T03:49:45.402 INFO:teuthology.orchestra.run.smithi017.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXyL/jGVMrhB6CCZqzKrC+TlnNwYpzdtM6KqiESYwWeHIoAdnzg1nCnQs0/DxPFUcNZPtyZgZcUIJm+/nr70WHJzmMQYvfSM/7WGzVuksFFRLehrMrwv89zQ4BkI2F7zj/J30QAv13SkvoMmZkzXOVvNQ9sTy03Y9PR5lVli31Nm3iDRpej/ReU9ttt2iNh3/nah4DBjCFBpEsmdsqyrHT341ntHkGZafJqDvBP+cKWaODrRTpdM7QsGonLaqAs08kzCj5mzfQdBUQ26Nj5NDU8cM10E6jveh2wdJejjO1z2smqxPMWcoCYxpXi26JKJ/VUBywA4FkQC+RUqFFES4sCswgL0qIDUe+R5mw9KkgMTTbTKofBuopzQcBTwnSQ/l25jhNeckAsXiEhmYAM2tN53OQilJg2L34bv7aqUiV8imrwglFf5uypNVoU3I96Pm41cdEFzdNqj9H05CzIqS9TvPVK4wVlcBzOGSdTJKgg3iWt+njdXKKtw+vY2piSWs= ceph-419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:49:45.414 DEBUG:teuthology.orchestra.run.smithi169:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXyL/jGVMrhB6CCZqzKrC+TlnNwYpzdtM6KqiESYwWeHIoAdnzg1nCnQs0/DxPFUcNZPtyZgZcUIJm+/nr70WHJzmMQYvfSM/7WGzVuksFFRLehrMrwv89zQ4BkI2F7zj/J30QAv13SkvoMmZkzXOVvNQ9sTy03Y9PR5lVli31Nm3iDRpej/ReU9ttt2iNh3/nah4DBjCFBpEsmdsqyrHT341ntHkGZafJqDvBP+cKWaODrRTpdM7QsGonLaqAs08kzCj5mzfQdBUQ26Nj5NDU8cM10E6jveh2wdJejjO1z2smqxPMWcoCYxpXi26JKJ/VUBywA4FkQC+RUqFFES4sCswgL0qIDUe+R5mw9KkgMTTbTKofBuopzQcBTwnSQ/l25jhNeckAsXiEhmYAM2tN53OQilJg2L34bv7aqUiV8imrwglFf5uypNVoU3I96Pm41cdEFzdNqj9H05CzIqS9TvPVK4wVlcBzOGSdTJKgg3iWt+njdXKKtw+vY2piSWs= ceph-419dd438-93ea-11ee-95a2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-12-06T03:49:45.455 INFO:teuthology.orchestra.run.smithi169.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXyL/jGVMrhB6CCZqzKrC+TlnNwYpzdtM6KqiESYwWeHIoAdnzg1nCnQs0/DxPFUcNZPtyZgZcUIJm+/nr70WHJzmMQYvfSM/7WGzVuksFFRLehrMrwv89zQ4BkI2F7zj/J30QAv13SkvoMmZkzXOVvNQ9sTy03Y9PR5lVli31Nm3iDRpej/ReU9ttt2iNh3/nah4DBjCFBpEsmdsqyrHT341ntHkGZafJqDvBP+cKWaODrRTpdM7QsGonLaqAs08kzCj5mzfQdBUQ26Nj5NDU8cM10E6jveh2wdJejjO1z2smqxPMWcoCYxpXi26JKJ/VUBywA4FkQC+RUqFFES4sCswgL0qIDUe+R5mw9KkgMTTbTKofBuopzQcBTwnSQ/l25jhNeckAsXiEhmYAM2tN53OQilJg2L34bv7aqUiV8imrwglFf5uypNVoU3I96Pm41cdEFzdNqj9H05CzIqS9TvPVK4wVlcBzOGSdTJKgg3iWt+njdXKKtw+vY2piSWs= ceph-419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:49:45.467 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2023-12-06T03:49:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:45 smithi017 conmon[82019]: cluster 2023-12-06T03:49:44.516951+0000 mon.smithi017 (mon.0) 92 : cluster [DBG] mgrmap e13: smithi017.mljnlu(active, since 7s) 2023-12-06T03:49:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:45 smithi017 conmon[82019]: audit 2023-12-06T03:49:44.594087+0000 mon.smithi017 (mon.0) 93 : audit [INF] from='client.? 172.21.15.17:0/2801798780' entity='client.admin' 2023-12-06T03:49:47.973 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2023-12-06T03:49:47.973 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2023-12-06T03:49:48.597 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:48 smithi017 conmon[82019]: audit 2023-12-06T03:49:47.326647+0000 mon.smithi017 (mon.0) 94 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:48.597 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:48 smithi017 conmon[82019]: audit 2023-12-06T03:49:47.402013+0000 mon.smithi017 (mon.0) 95 : audit [INF] from='client.? 172.21.15.17:0/500449339' entity='client.admin' 2023-12-06T03:49:48.597 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:48 smithi017 conmon[82019]: audit 2023-12-06T03:49:48.088492+0000 mon.smithi017 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi017", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:49:48.598 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:48 smithi017 conmon[82019]: audit 2023-12-06T03:49:48.092398+0000 mon.smithi017 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:49.517 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:49 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:48.102605+0000 mgr.smithi017.mljnlu (mgr.14156) 5 : 2023-12-06T03:49:49.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:49 smithi017 conmon[82019]: cephadm [INF] Deploying daemon alertmanager.smithi017 on smithi017 2023-12-06T03:49:50.528 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi169 2023-12-06T03:49:50.528 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:49:50.528 DEBUG:teuthology.orchestra.run.smithi169:> dd of=/etc/ceph/ceph.conf 2023-12-06T03:49:50.546 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:49:50.547 DEBUG:teuthology.orchestra.run.smithi169:> dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-06T03:49:50.603 INFO:tasks.cephadm:Adding host smithi169 to orchestrator... 2023-12-06T03:49:50.604 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch host add smithi169 2023-12-06T03:49:51.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:51 smithi017 conmon[82019]: audit 2023-12-06T03:49:50.101200+0000 mgr.smithi017.mljnlu (mgr.14156) 6 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:49:51.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:51 smithi017 conmon[82019]: audit 2023-12-06T03:49:50.104332+0000 mon.smithi017 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:56.124 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:55 smithi017 conmon[82019]: audit 2023-12-06T03:49:54.859883+0000 mon.smithi017 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:56.124 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:55 smithi017 conmon[82019]: audit 2023-12-06T03:49:54.861505+0000 mon.smithi017 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi017", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:49:56.125 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:55 smithi017 conmon[82019]: audit 2023-12-06T03:49:54.863135+0000 mon.smithi017 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi017", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-12-06T03:49:56.125 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:55 smithi017 conmon[82019]: audit 2023-12-06T03:49:54.863733+0000 mon.smithi017 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:49:56.125 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:55 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:54.864250+0000 mgr.smithi017.mljnlu (mgr.14156) 7 : cephadm [INF] Deploying daemon crash.smithi017 on smithi017 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.029443+0000 mon.smithi017 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.164471+0000 mon.smithi017 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.166352+0000 mon.smithi017 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.168399+0000 mon.smithi017 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.168741+0000 mgr.smithi017.mljnlu (mgr.14156) 8 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57. 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: 171208+0000 mon.smithi017 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: cephadm 2023-12-06T03:49:57.178349+0000 mgr.smithi017.mljnlu (mgr.14156) 9 : cephadm [INF] Deploying daemon grafana.smithi017 on smithi017 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: cluster 2023-12-06T03:49:57.503529+0000 mgr.smithi017.mljnlu (mgr.14156) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:49:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:49:58 smithi017 conmon[82019]: audit 2023-12-06T03:49:57.645957+0000 mon.smithi017 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:00.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:00 smithi017 conmon[82019]: cluster 2023-12-06T03:49:59.503759+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:50:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:00 smithi017 conmon[82019]: mgr.14156) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:02.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:02 smithi017 conmon[82019]: cluster 2023-12-06T03:50:01.504009+0000 mgr.smithi017.mljnlu 2023-12-06T03:50:02.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:02 smithi017 conmon[82019]: (mgr.14156) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:04.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:04 smithi017 conmon[82019]: cluster 2023-12-06T03:50:03.504191+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:50:04.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:04 smithi017 conmon[82019]: mgr.14156) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:06 smithi017 conmon[82019]: cluster 2023-12-06T03:50:05.504417+0000 mgr.smithi017.mljnlu (mgr.14156) 14 2023-12-06T03:50:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:06 smithi017 conmon[82019]: : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:08.792 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:08 smithi017 conmon[82019]: cluster 2023-12-06T03:50:07.504611+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:50:08.793 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:08 smithi017 conmon[82019]: mgr.14156) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:10.655 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:10 smithi017 conmon[82019]: cluster 2023-12-06T03:50:09.504972 2023-12-06T03:50:10.655 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:10 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:12 smithi017 conmon[82019]: audit 2023-12-06T03:50:11.338641+0000 2023-12-06T03:50:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:12 smithi017 conmon[82019]: mon.smithi017 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:12 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:11.340839+0000 mgr.smithi017.mljnlu (mgr.14156) 17 : cephadm [INF] Deploying daemon node-exporter.smithi017 on smithi017 2023-12-06T03:50:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:12 smithi017 conmon[82019]: cluster 2023-12-06T03:50:11.505256+0000 mgr.smithi017.mljnlu (mgr.14156) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:13.807 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:13 smithi017 conmon[82019]: audit 2023-12-06T03:50:12.649617+0000 mon.smithi017 (mon.0 2023-12-06T03:50:13.808 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:13 smithi017 conmon[82019]: ) 110 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:14 smithi017 conmon[82019]: cluster 2023-12-06T03:50:13.505521+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:50:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:14 smithi017 conmon[82019]: .14156) 19 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:16.168 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:15 smithi017 conmon[82019]: audit 2023-12-06T03:50:14.905337+0000 mon.smithi017 (mon.0) 111 : audit 2023-12-06T03:50:16.169 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:15 smithi017 conmon[82019]: [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:16.169 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:15 smithi017 conmon[82019]: audit 2023-12-06T03:50:14.907594+0000 mon.smithi017 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2023-12-06T03:50:16.169 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:15 smithi017 conmon[82019]: cluster 2023 2023-12-06T03:50:16.169 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:15 smithi017 conmon[82019]: -12-06T03:50:15.505858+0000 mgr.smithi017.mljnlu (mgr.14156) 20 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:16 smithi017 conmon[82019]: audit 2023-12-06T03:50:15.909467+0000 mon.smithi017 ( 2023-12-06T03:50:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:16 smithi017 conmon[82019]: mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.17:0/776086507' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2023-12-06T03:50:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:16 smithi017 conmon[82019]: cluster 2023-12-06T03:50:15.909545+0000 mon.smithi017 (mon.0) 114 : 2023-12-06T03:50:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:16 smithi017 conmon[82019]: cluster [DBG] mgrmap e14: smithi017.mljnlu(active, since 38s) 2023-12-06T03:50:21.784 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: cluster 2023-12-06T03:50:21.482889+0000 mon.smithi017 (mon 2023-12-06T03:50:21.784 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: .0) 115 : cluster [INF] Active manager daemon smithi017.mljnlu restarted 2023-12-06T03:50:21.784 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: cluster 2023-12-06T03:50:21.483221+0000 mon.smithi017 (mon.0) 116 : cluster [INF] Activating manager daemon smithi017.mljnlu 2023-12-06T03:50:21.784 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: cluster 2023-12-06T03:50:21.486161+0000 mon.smithi017 (mon.0) 117 : cluster [DBG] 2023-12-06T03:50:21.784 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: osdmap e4: 0 total, 0 up, 0 in 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: 03:50:21.486266+0000 mon.smithi017 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi017.mljnlu(active, starting, since 0.00317753s) 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: audit 2023-12-06T03:50:21. 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: 487372+0000 mon.smithi017 (mon.0) 119 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.487996 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi017.mljnlu", "id": "smithi017.mljnlu"}]: dispatch 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.488669+0000 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: mon.smithi017 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.488824+0000 mon.smithi017 (mon.0) 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: 122 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: audit 2023 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: -12-06T03:50:21.488975+0000 mon.smithi017 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: cluster 2023-12-06T03:50:21. 2023-12-06T03:50:21.785 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:21 smithi017 conmon[82019]: 491016+0000 mon.smithi017 (mon.0) 124 : cluster [INF] Manager daemon smithi017.mljnlu is now available 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.591906+0000 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: mon.smithi017 (mon.0) 125 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.593352+0000 mon.smithi017 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.618637+0000 mon.smithi017 (mon.0) 127 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.627842+0000 mon.smithi017 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/mirror_snapshot_schedule"}]: dispatch 2023-12-06T03:50:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: audit 2023-12-06T03:50:21.632101+0000 mon.smithi017 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi017.mljnlu/trash_purge_schedule"}]: dispatch 2023-12-06T03:50:22.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:22 smithi017 conmon[82019]: cluster 2023-12-06T03:50:22.488153+0000 mon.smithi017 (mon.0) 130 : cluster [DBG] mgrmap e16: smithi017.mljnlu(active, since 1.00506s) 2023-12-06T03:50:24.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:24 smithi017 conmon[82019]: cluster 2023-12-06T03:50:23.538078+0000 mon.smithi017 (mon.0) 131 : cluster [DBG] mgrmap e17: smithi017.mljnlu(active, since 2s) 2023-12-06T03:50:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12-06T03:50:25.588938 2023-12-06T03:50:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 132 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:50:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: 06T03:50:25.985574+0000 mon.smithi017 (mon. 2023-12-06T03:50:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: 0) 133 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi017", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: 2023-12-06T03:50:25.986495+0000 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 134 : audit [DBG] 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: T03:50:25.987148+0000 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 135 : audit [INF] 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: T03:50:26.044864+0000 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 136 : audit [INF] 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: T03:50:26.047278+0000 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 137 : audit [INF] 2023-12-06T03:50:26.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:26 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:27.236 INFO:teuthology.orchestra.run.smithi169.stdout:Added host 'smithi169' with addr '172.21.15.169' 2023-12-06T03:50:27.623 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch host ls --format=json 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:25.988226+0000 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1 : cephadm [INF] Updating smithi017:/etc/ceph/ceph.conf 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:26.016681+0000 mgr.smithi017.mljnlu (mgr.14180) 2 : cephadm [INF] Updating smithi017:/etc/ceph/ceph.client.admin.keyring 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: cephadm 2023 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: -12-06T03:50:26 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: .059043+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: ) 3 : cephadm [INF] Deploying daemon prometheus.smithi017 on smithi017 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: 12-06T03:50:26.520710 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 4 2023-12-06T03:50:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi169", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:50:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:50:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: 06T03:50:27.233927+0000 mon.smithi017 (mon 2023-12-06T03:50:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: .0) 138 : audit [INF] 2023-12-06T03:50:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:27 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:29.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:28 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:27.234257+0000 mgr.smithi017.mljnlu 2023-12-06T03:50:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:28 smithi017 conmon[82019]: (mgr.14180) 5 : cephadm [INF] Added host smithi169 2023-12-06T03:50:29.303 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:50:29.303 INFO:teuthology.orchestra.run.smithi169.stdout:[{"addr": "172.21.15.17", "hostname": "smithi017", "labels": [], "status": ""}, {"addr": "172.21.15.169", "hostname": "smithi169", "labels": [], "status": ""}] 2023-12-06T03:50:29.784 INFO:tasks.cephadm:Setting crush tunables to default 2023-12-06T03:50:29.785 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd crush tunables default 2023-12-06T03:50:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:30 smithi017 conmon[82019]: audit 2023-12-06T03:50:29.301247+0000 mgr.smithi017.mljnlu 2023-12-06T03:50:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:30 smithi017 conmon[82019]: (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:50:35.124 INFO:teuthology.orchestra.run.smithi017.stderr:adjusted tunables profile to default 2023-12-06T03:50:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:35 smithi017 conmon[82019]: audit 2023-12-06T03:50:35.068146+0000 mon.smithi017 (mon.0) 139 : audit [INF] from='client.? 172.21.15.17:0/2160290865' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2023-12-06T03:50:35.752 INFO:tasks.cephadm:Adding mon.smithi017 on smithi017 2023-12-06T03:50:35.752 INFO:tasks.cephadm:Adding mon.smithi169 on smithi169 2023-12-06T03:50:35.752 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch apply mon '2;smithi017:172.21.15.17=smithi017;smithi169:172.21.15.169=smithi169' 2023-12-06T03:50:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:36 smithi017 conmon[82019]: audit 2023-12-06T03:50:35.120439+0000 2023-12-06T03:50:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:36 smithi017 conmon[82019]: mon.smithi017 (mon.0) 140 : audit [INF] from='client.? 172.21.15.17:0/2160290865' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2023-12-06T03:50:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:36 smithi017 conmon[82019]: cluster 2023-12-06T03:50:35.120492+0000 mon.smithi017 (mon.0) 141 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-12-06T03:50:37.433 INFO:teuthology.orchestra.run.smithi169.stdout:Scheduled mon update... 2023-12-06T03:50:38.003 DEBUG:teuthology.orchestra.run.smithi169:mon.smithi169> sudo journalctl -f -n 0 -u ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi169.service 2023-12-06T03:50:38.006 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-06T03:50:38.006 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-12-06T03:50:38.034 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:-- Logs begin at Wed 2023-12-06 03:36:20 UTC. -- 2023-12-06T03:50:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:38 smithi017 conmon[82019]: audit 2023-12-06T03:50:37.426153+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:50:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:38 smithi017 conmon[82019]: mgr.14180) 7 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi017:172.21.15.17=smithi017;smithi169:172.21.15.169=smithi169", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:50:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:38 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:37.428411+0000 mgr.smithi017.mljnlu (mgr.14180) 8 : cephadm [INF] Saving service mon spec with placement smithi017:172.21.15.17=smithi017;smithi169:172.21.15.169=smithi169;count:2 2023-12-06T03:50:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:38 smithi017 conmon[82019]: audit 2023-12-06T03:50:37.431353+0000 mon.smithi017 (mon.0) 142 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:39.770 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:50:39.770 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":1,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","modified":"2023-12-06T03:48:41.621913Z","created":"2023-12-06T03:48:41.621913Z","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":"smithi017","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:3300","nonce":0},{"type":"v1","addr":"172.21.15.17:6789","nonce":0}]},"addr":"172.21.15.17:6789/0","public_addr":"172.21.15.17:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-06T03:50:39.772 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 1 2023-12-06T03:50:39.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:39 smithi017 conmon[82019]: audit 2023-12-06T03:50:38.496647+0000 mon.smithi017 (mon. 2023-12-06T03:50:39.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:39 smithi017 conmon[82019]: 0) 143 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:39.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:39 smithi017 conmon[82019]: audit 2023-12-06T03:50:38.498027+0000 mon.smithi017 (mon.0) 144 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:50:39.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:39 smithi017 conmon[82019]: audit 2023-12-06T03:50:39.120675+0000 mon.smithi017 (mon.0) 145 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:40 smithi017 conmon[82019]: audit 2023-12-06T03:50:39.761441+0000 mon.smithi017 ( 2023-12-06T03:50:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:40 smithi017 conmon[82019]: mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:40 smithi017 conmon[82019]: audit 2023-12-06T03:50:39.769814+0000 mon.smithi017 (mon.0) 147 : audit [DBG] from='client.? 172.21.15.169:0/2976658582' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:50:41.184 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-06T03:50:41.184 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-12-06T03:50:42.916 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:50:42.916 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":1,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","modified":"2023-12-06T03:48:41.621913Z","created":"2023-12-06T03:48:41.621913Z","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":"smithi017","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:3300","nonce":0},{"type":"v1","addr":"172.21.15.17:6789","nonce":0}]},"addr":"172.21.15.17:6789/0","public_addr":"172.21.15.17:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-06T03:50:42.918 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 1 2023-12-06T03:50:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:42 smithi017 conmon[82019]: cluster 2023-12-06T03:50:41.489830+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:50:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:42 smithi017 conmon[82019]: mgr.14180) 9 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:42 smithi017 conmon[82019]: audit 2023-12-06T03:50:41.621417+0000 2023-12-06T03:50:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:42 smithi017 conmon[82019]: mon.smithi017 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:44.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:43 smithi017 conmon[82019]: audit 2023-12-06T03:50:42.915487+0000 2023-12-06T03:50:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:43 smithi017 conmon[82019]: mon.smithi017 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.169:0/3935507961' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:50:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:43 smithi017 conmon[82019]: audit 2023-12-06T03:50:43.251939+0000 mon.smithi017 (mon.0 2023-12-06T03:50:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:43 smithi017 conmon[82019]: ) 150 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:44.327 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-06T03:50:44.327 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: cluster 2023-12-06T03:50:43.490225+0000 mgr.smithi017.mljnlu 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: (mgr.14180) 10 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06T03:50:44.099004+0000 mon.smithi017 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06T03:50:44.201255+0000 mon.smithi017 (mon.0) 152 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06T03:50 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: :44.201910+0000 mon.smithi017 (mon.0) 153 2023-12-06T03:50:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi169", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 50:44.202724+0000 mon.smithi017 (mon.0) 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 154 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 03:50:44.203414+0000 mon.smithi017 (mon. 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 0) 155 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 06T03:50:44.245424+0000 mon.smithi017 ( 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 12-06T03:50:44.247761+0000 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: mon.smithi017 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:50:45.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 12-06T03:50:44.249211+0000 mon.smithi017 (mon 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: .0) 158 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi169", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: T03:50:44.250802+0000 mon.smithi017 (mon 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: .0) 159 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi169", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: -06T03:50:44.252224+0000 mon.smithi017 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: (mon.0) 160 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:50:45.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:44 smithi017 conmon[82019]: 2023-12-06T03:50:46.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:45 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:44.204506+0000 mgr.smithi017.mljnlu (mgr.14180) 11 : 2023-12-06T03:50:46.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:45 smithi017 conmon[82019]: cephadm [INF] Updating smithi169:/etc/ceph/ceph.conf 2023-12-06T03:50:46.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:45 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:44.226512+0000 mgr.smithi017.mljnlu (mgr.14180) 12 : cephadm [INF] Updating smithi169:/etc/ceph/ceph.client.admin.keyring 2023-12-06T03:50:46.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:45 smithi017 conmon[82019]: cephadm 2023-12-06T03 2023-12-06T03:50:46.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:45 smithi017 conmon[82019]: :50:44.252849+0000 mgr.smithi017.mljnlu (mgr.14180) 13 : cephadm [INF] Deploying daemon crash.smithi169 on smithi169 2023-12-06T03:50:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:46 smithi017 conmon[82019]: cluster 2023-12-06T03:50:45.490620+0000 2023-12-06T03:50:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:46 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 14 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:48 smithi017 conmon[82019]: cluster 2023-12-06T03:50:47.490855+0000 mgr.smithi017.mljnlu (mgr.14180) 15 : cluster [DBG] 2023-12-06T03:50:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:48 smithi017 conmon[82019]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:50.715 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:50:50.715 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":1,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","modified":"2023-12-06T03:48:41.621913Z","created":"2023-12-06T03:48:41.621913Z","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":"smithi017","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:3300","nonce":0},{"type":"v1","addr":"172.21.15.17:6789","nonce":0}]},"addr":"172.21.15.17:6789/0","public_addr":"172.21.15.17:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-06T03:50:50.717 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 1 2023-12-06T03:50:51.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:50 smithi017 conmon[82019]: cluster 2023-12-06T03:50:49.491263+0000 mgr.smithi017.mljnlu (mgr.14180) 16 : 2023-12-06T03:50:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:50 smithi017 conmon[82019]: cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:52.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:51 smithi017 conmon[82019]: audit 2023-12-06T03:50:50.714156+0000 mon.smithi017 (mon. 2023-12-06T03:50:52.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:51 smithi017 conmon[82019]: 0) 161 : audit [DBG] from='client.? 172.21.15.169:0/3318039160' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: cluster 2023-12-06T03:50:51.491623+0000 mgr.smithi017.mljnlu (mgr.14180) 17 : cluster 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit 2023-12-06T03:50:52.239651+0000 mon.smithi017 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit 2023-12-06T03:50:52.242124+0000 mon.smithi017 (mon.0) 163 : audit 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi169.rlrcud", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit 2023-12-06T03:50:52.244167+0000 mon.smithi017 (mon.0) 164 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi169.rlrcud", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit 2023-12-06T03:50:52.245008+0000 mon.smithi017 (mon.0) 165 : 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:50:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:52 smithi017 conmon[82019]: 03:50:52.245986+0000 mon.smithi017 (mon.0) 166 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:50:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:53 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:52.246721+0000 mgr.smithi017.mljnlu (mgr.14180) 18 : cephadm 2023-12-06T03:50:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:53 smithi017 conmon[82019]: [INF] Deploying daemon mgr.smithi169.rlrcud on smithi169 2023-12-06T03:50:54.243 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-06T03:50:54.243 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-12-06T03:50:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:54 smithi017 conmon[82019]: cluster 2023-12-06T03:50:53.491917+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:50:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:54 smithi017 conmon[82019]: .14180) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:56 smithi017 conmon[82019]: cluster 2023-12-06T03:50:55.492304+0000 mgr.smithi017.mljnlu (mgr.14180) 20 2023-12-06T03:50:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:56 smithi017 conmon[82019]: : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:56 smithi017 conmon[82019]: audit 2023-12-06T03:50:56.627112+0000 mon.smithi017 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:58.224 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:50:58.224 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":1,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","modified":"2023-12-06T03:48:41.621913Z","created":"2023-12-06T03:48:41.621913Z","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":"smithi017","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:3300","nonce":0},{"type":"v1","addr":"172.21.15.17:6789","nonce":0}]},"addr":"172.21.15.17:6789/0","public_addr":"172.21.15.17:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-06T03:50:58.224 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 1 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: cluster 2023-12-06T03:50:57.492595+0000 mgr.smithi017.mljnlu (mgr.14180) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: audit 2023 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: -12-06T03:50:58.075888+0000 mon.smithi017 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: audit 2023-12-06T03:50:58.078207+0000 mon.smithi017 (mon.0) 169 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: 50:58.079131+0000 mon.smithi017 (mon.0) 170 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: audit 2023-12-06T03:50:58 2023-12-06T03:50:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:58 smithi017 conmon[82019]: .221629+0000 mon.smithi017 (mon.0) 171 : audit [DBG] from='client.? 172.21.15.169:0/1293371388' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:50:59.598 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-06T03:50:59.598 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-12-06T03:51:00.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:50:59 smithi017 conmon[82019]: cephadm 2023-12-06T03:50:58.079903+0000 mgr.smithi017.mljnlu (mgr.14180) 22 : cephadm [INF] Deploying daemon mon.smithi169 on smithi169 2023-12-06T03:51:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:00 smithi017 conmon[82019]: cluster 2023-12-06T03:50:59.492969+0000 mgr.smithi017.mljnlu (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:01.290 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.291 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-06T03:51:01.291 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression: NoCompression 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.num_levels: 7 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:51:01.663 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-06T03:51:01.664 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-06T03:51:01.665 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.table_properties_collectors: 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.inplace_update_support: 0 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.bloom_locality: 0 2023-12-06T03:51:01.666 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.max_successive_merges: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.ttl: 2592000 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.283+0000 7fcfd4121880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.284+0000 7fcfd4121880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi169/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.284+0000 7fcfd4121880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.284+0000 7fcfd4121880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834661285738, "job": 1, "event": "recovery_started", "log_files": [3]} 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.284+0000 7fcfd4121880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.284+0000 7fcfd4121880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.285+0000 7fcfd4121880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834661286232, "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": 1701834661, "oldest_key_time": 3, "file_creation_time": 0}} 2023-12-06T03:51:01.667 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.285+0000 7fcfd4121880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.285+0000 7fcfd4121880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701834661286619, "job": 1, "event": "recovery_finished"} 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfd4121880 4 rocksdb: DB pointer 0x55ab6182f800 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfbaf27700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfbaf27700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** DB Stats ** 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** Compaction Stats [default] ** 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:51:01.668 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** Compaction Stats [default] ** 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Cumulative compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:51:01.669 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Interval compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** Compaction Stats [default] ** 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** Compaction Stats [default] ** 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-06T03:51:01.670 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 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.0 0.00 0.00 1 0.000 0 0 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(Total Files): cumulative 0, interval 0 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: AddFile(Keys): cumulative 0, interval 0 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Cumulative compaction: 0.00 GB write, 0.58 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: ** File Read Latency Histogram By Level [default] ** 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfd4121880 0 mon.smithi169 does not exist in monmap, will attempt to join an existing cluster 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfd4121880 0 using public_addr v2:172.21.15.169:0/0 -> [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.286+0000 7fcfd4121880 0 starting mon.smithi169 rank -1 at public addrs [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] at bind addrs [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi169 fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.287+0000 7fcfd4121880 1 mon.smithi169@-1(???) e0 preinit fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:51:01.671 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 bash[87094]: 37b785d4442a64c825625b2fed766bdca844752a82d6c2a9cd533ec37939c8e6 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 systemd[1]: Started Ceph mon.smithi169 for 419dd438-93ea-11ee-95a2-87774f69a715. 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.317+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).mds e1 new map 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.317+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).mds e1 print_map 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: e1 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: enable_multiple, ever_enabled_multiple: 1,1 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: legacy client fscid: -1 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: No filesystems configured 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.317+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2023-12-06T03:51:01.672 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 0 mon.smithi169@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: cluster 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: 2023-12-06T03:50:59.492969+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:01.673 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:01 smithi169 conmon[87179]: debug 2023-12-06T03:51:01.318+0000 7fcfbd72c700 1 mon.smithi169@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2023-12-06T03:51:06.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:01.328810+0000 mon.smithi017 (mon. 2023-12-06T03:51:06.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 0) 173 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51:01.329033+0000 mon.smithi017 (mon.0) 174 : cluster [INF] mon.smithi017 calling monitor election 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:01.341961+0000 mon.smithi017 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03: 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 51:01.493258+0000 mgr.smithi017.mljnlu (mgr.14180) 24 : cluster 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:02.324640+0000 mon.smithi017 (mon 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: .0) 176 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:03.324794+0000 mon.smithi017 ( 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: mon.0) 177 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: -12-06T03:51:03.326563+0000 mon.smithi169 (mon. 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 1) 1 : cluster [INF] mon.smithi169 calling monitor election 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023 2023-12-06T03:51:06.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: -12-06T03:51:03.493537+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 14180) 25 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:03.631886+0000 mon.smithi017 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: (mon.0) 178 : audit [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi169.rlrcud/crt"}]: dispatch 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:04.325023+0000 mon.smithi017 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: -12-06T03:51:05.324849+0000 mon.smithi017 ( 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: mon.0) 180 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:05.493803+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: mgr.14180) 26 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51: 2023-12-06T03:51:06.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 06.325239+0000 mon.smithi017 (mon.0) 181 : audit 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03: 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 51:06.355233+0000 mon.smithi017 (mon.0) 182 : 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster [INF] mon.smithi017 is new leader, mons smithi017,smithi169 in quorum (ranks 0,1) 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: :51:06.358390+0000 mon.smithi017 (mon.0) 183 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: : cluster [DBG] monmap e2: 2 mons at {smithi017=[v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0],smithi169=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51:06 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: .358949+0000 mon.smithi017 (mon.0) 184 : cluster [DBG] 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: fsmap 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51:06 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: .358989+0000 mon.smithi017 (mon.0) 185 : cluster [DBG] 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: osdmap e5: 0 total, 0 up, 0 in 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: :06.359287+0000 mon.smithi017 (mon.0) 186 : cluster 2023-12-06T03:51:06.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] mgrmap e17: smithi017.mljnlu(active, since 44s) 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51: 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 06.360641+0000 mon.smithi017 (mon.0) 187 : cluster [DBG] 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: Standby manager daemon smithi169.rlrcud started 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: .361772+0000 mon.smithi017 (mon.0) 188 : audit 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: cluster 2023-12-06T03:51:06.363497+0000 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: mon.smithi017 (mon.0) 189 : cluster [INF] overall HEALTH_OK 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 03:51:06.363816+0000 mon.smithi017 (mon.0) 190 : audit 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi169.rlrcud/key"}]: dispatch 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: .364274+0000 mon.smithi017 (mon.0) 191 : audit 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.365812 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 192 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:06.754 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: 2023-12-06T03:51:06.755 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.371317 2023-12-06T03:51:06.755 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 193 : audit [INF] 2023-12-06T03:51:06.755 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:06 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:01.328810+0000 mon.smithi017 (mon.0) 173 : audit 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi017"}]: dispatch 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:01.329033+0000 mon.smithi017 (mon.0) 174 : cluster [INF] mon.smithi017 calling monitor election 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:01.341961+0000 mon.smithi017 (mon.0) 175 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:01.493258+0000 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:02.324640+0000 mon.smithi017 (mon 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: .0) 176 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51: 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 03.324794+0000 mon.smithi017 (mon.0) 177 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: -12-06T03:51:03.326563+0000 mon.smithi169 (mon.1 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: ) 1 : cluster [INF] mon.smithi169 calling monitor election 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:03.493537+0000 mgr.smithi017.mljnlu (mgr.14180) 25 : cluster [DBG] 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:03.631886 2023-12-06T03:51:06.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 178 : audit [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi169.rlrcud/crt"}]: dispatch 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:04.325023+0000 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mon.smithi017 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:05.324849+0000 mon.smithi017 ( 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mon.0) 180 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:05.493803+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mgr.14180) 26 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.325239+0000 mon.smithi017 (mon 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: .0) 181 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.355233+0000 mon.smithi017 ( 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mon.0) 182 : cluster [INF] mon.smithi017 is new leader, mons smithi017,smithi169 in quorum (ranks 0,1) 2023-12-06T03:51:06.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.358390+0000 mon.smithi017 (mon 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: .0) 183 : cluster [DBG] monmap e2: 2 mons at {smithi017=[v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0],smithi169=[v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0]} removed_ranks: {} 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.358949+0000 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: mon.smithi017 (mon.0) 184 : cluster [DBG] fsmap 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 03:51:06.358989+0000 mon.smithi017 (mon.0) 185 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.359287 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 186 : cluster [DBG] mgrmap e17: smithi017.mljnlu(active, since 44s) 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: -06T03:51:06.360641+0000 mon.smithi017 (mon.0) 187 : cluster [DBG] 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: Standby manager daemon smithi169.rlrcud started 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51 2023-12-06T03:51:06.822 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: :06.361772+0000 mon.smithi017 (mon.0) 188 : audit 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: .363497+0000 mon.smithi017 (mon.0) 189 : cluster [INF] 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: overall HEALTH_OK 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.363816+0000 mon.smithi017 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: (mon.0) 190 : audit [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi169.rlrcud/key"}]: dispatch 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.364274 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.169:0/5887468' entity='mgr.smithi169.rlrcud' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06. 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 365812+0000 mon.smithi017 (mon.0) 192 : audit [INF] 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.371317 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:06.823 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:06 smithi017 conmon[82019]: 2023-12-06T03:51:07.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:07 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:06.368060+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:07.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:07 smithi169 conmon[87179]: .14180) 27 : cephadm [INF] Deploying daemon node-exporter.smithi169 on smithi169 2023-12-06T03:51:07.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:07 smithi169 conmon[87179]: cluster 2023-12-06T03:51:06.421703+0000 mon.smithi017 (mon.0) 194 : cluster [DBG] mgrmap e18: smithi017.mljnlu(active, since 44s), standbys: smithi169.rlrcud 2023-12-06T03:51:07.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:07 smithi169 conmon[87179]: audit 2023-12-06T03:51:06.421908+0000 mon.smithi017 (mon.0) 195 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi169.rlrcud", "id": "smithi169.rlrcud"}]: dispatch 2023-12-06T03:51:07.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:07 smithi169 conmon[87179]: audit 2023-12-06T03:51:07.325407+0000 mon.smithi017 (mon.0) 196 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:06.368060+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: 27 : cephadm [INF] Deploying daemon node-exporter.smithi169 on smithi169 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: cluster 2023-12-06T03:51:06.421703+0000 mon.smithi017 ( 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: mon.0) 194 : cluster [DBG] mgrmap e18: smithi017.mljnlu(active, since 44s), standbys: smithi169.rlrcud 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: audit 2023-12-06T03:51:06.421908+0000 mon.smithi017 (mon 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: .0) 195 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr metadata", "who": "smithi169.rlrcud", "id": "smithi169.rlrcud"}]: dispatch 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: audit 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: 2023-12-06T03:51:07.325407+0000 mon.smithi017 (mon.0 2023-12-06T03:51:07.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:07 smithi017 conmon[82019]: ) 196 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mon metadata", "id": "smithi169"}]: dispatch 2023-12-06T03:51:07.844 INFO:teuthology.orchestra.run.smithi169.stdout: 2023-12-06T03:51:07.844 INFO:teuthology.orchestra.run.smithi169.stdout:{"epoch":2,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","modified":"2023-12-06T03:51:01.325620Z","created":"2023-12-06T03:48:41.621913Z","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":"smithi017","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:3300","nonce":0},{"type":"v1","addr":"172.21.15.17:6789","nonce":0}]},"addr":"172.21.15.17:6789/0","public_addr":"172.21.15.17:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi169","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:3300","nonce":0},{"type":"v1","addr":"172.21.15.169:6789","nonce":0}]},"addr":"172.21.15.169:6789/0","public_addr":"172.21.15.169:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2023-12-06T03:51:07.845 INFO:teuthology.orchestra.run.smithi169.stderr:dumped monmap epoch 2 2023-12-06T03:51:08.301 INFO:tasks.cephadm:Generating final ceph.conf file... 2023-12-06T03:51:08.301 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph config generate-minimal-conf 2023-12-06T03:51:08.483 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:08 smithi169 conmon[87179]: cluster 2023-12-06T03:51:07.494114+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:08.483 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:08 smithi169 conmon[87179]: 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:08.483 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:08 smithi169 conmon[87179]: audit 2023-12-06T03:51:07.841209+0000 mon.smithi017 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.169:0/1263829332' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:51:08.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:08 smithi017 conmon[82019]: cluster 2023-12-06T03:51:07.494114+0000 mgr.smithi017.mljnlu (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:08.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:08 smithi017 conmon[82019]: audit 2023-12-06T03:51:07.841209+0000 mon.smithi017 (mon.0) 197 : audit [DBG] from='client.? 172.21.15.169:0/1263829332' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-06T03:51:10.329 INFO:teuthology.orchestra.run.smithi017.stdout:# minimal ceph.conf for 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:51:10.329 INFO:teuthology.orchestra.run.smithi017.stdout:[global] 2023-12-06T03:51:10.329 INFO:teuthology.orchestra.run.smithi017.stdout: fsid = 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:51:10.329 INFO:teuthology.orchestra.run.smithi017.stdout: mon_host = [v2:172.21.15.17:3300/0,v1:172.21.15.17:6789/0] [v2:172.21.15.169:3300/0,v1:172.21.15.169:6789/0] 2023-12-06T03:51:10.775 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:10 smithi017 conmon[82019]: cluster 2023-12-06T03:51:09. 2023-12-06T03:51:10.775 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:10 smithi017 conmon[82019]: 494354+0000 mgr.smithi017.mljnlu (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:10.775 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:10 smithi017 conmon[82019]: audit 2023-12-06T03:51:09.992551+0000 mon.smithi017 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:10.775 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:10 smithi017 conmon[82019]: audit 2023-12-06T03:51:09.994038+0000 mon.smithi017 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:51:10.775 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:10 smithi017 conmon[82019]: audit 2023-12-06T03:51:10.328045+0000 mon.smithi017 (mon.0) 200 : audit [DBG] from='client.? 172.21.15.17:0/1443356717' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:10.858 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2023-12-06T03:51:10.858 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:51:10.859 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/etc/ceph/ceph.conf 2023-12-06T03:51:10.889 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:51:10.889 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-06T03:51:10.955 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:51:10.955 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/ceph/ceph.conf 2023-12-06T03:51:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:10 smithi169 conmon[87179]: cluster 2023-12-06T03:51:09.494354+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:10 smithi169 conmon[87179]: .14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:10 smithi169 conmon[87179]: audit 2023-12-06T03:51:09.992551+0000 mon.smithi017 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:10 smithi169 conmon[87179]: audit 2023-12-06T03:51:09.994038+0000 mon.smithi017 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:51:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:10 smithi169 conmon[87179]: audit 2023-12-06T03:51:10.328045+0000 mon.smithi017 (mon.0) 200 : audit [DBG] from='client.? 172.21.15.17:0/1443356717' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:10.996 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:51:10.996 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-06T03:51:11.062 INFO:tasks.cephadm:Deploying OSDs... 2023-12-06T03:51:11.062 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:51:11.062 DEBUG:teuthology.orchestra.run.smithi017:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:51:11.077 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-06T03:51:11.077 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/nvme1n1 2023-12-06T03:51:11.133 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/nvme1n1 2023-12-06T03:51:11.133 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:11.133 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 244802 Links: 1 Device type: 103,1 2023-12-06T03:51:11.133 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:11.134 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:11.134 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:49:48.058875813 +0000 2023-12-06T03:51:11.134 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:49:47.987876554 +0000 2023-12-06T03:51:11.134 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:49:47.987876554 +0000 2023-12-06T03:51:11.134 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:51:11.134 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-12-06T03:51:11.200 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:51:11.200 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:51:11.201 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000115338 s, 4.4 MB/s 2023-12-06T03:51:11.201 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-12-06T03:51:11.256 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/nvme2n1 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/nvme2n1 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 244858 Links: 1 Device type: 103,2 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:49:48.068875709 +0000 2023-12-06T03:51:11.312 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:49:47.992876502 +0000 2023-12-06T03:51:11.313 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:49:47.992876502 +0000 2023-12-06T03:51:11.313 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:51:11.313 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-12-06T03:51:11.377 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:51:11.377 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:51:11.377 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000106588 s, 4.8 MB/s 2023-12-06T03:51:11.378 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-12-06T03:51:11.435 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/nvme3n1 2023-12-06T03:51:11.490 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/nvme3n1 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 243432 Links: 1 Device type: 103,3 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:49:48.078875604 +0000 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:49:47.995876470 +0000 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:49:47.995876470 +0000 2023-12-06T03:51:11.491 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:51:11.491 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-12-06T03:51:11.556 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:51:11.556 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:51:11.556 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000118738 s, 4.3 MB/s 2023-12-06T03:51:11.557 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-12-06T03:51:11.614 DEBUG:teuthology.orchestra.run.smithi017:> stat /dev/nvme4n1 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout: File: /dev/nvme4n1 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout:Device: 6h/6d Inode: 243455 Links: 1 Device type: 103,4 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout:Access: 2023-12-06 03:49:48.088875500 +0000 2023-12-06T03:51:11.670 INFO:teuthology.orchestra.run.smithi017.stdout:Modify: 2023-12-06 03:49:47.995876470 +0000 2023-12-06T03:51:11.671 INFO:teuthology.orchestra.run.smithi017.stdout:Change: 2023-12-06 03:49:47.995876470 +0000 2023-12-06T03:51:11.671 INFO:teuthology.orchestra.run.smithi017.stdout: Birth: - 2023-12-06T03:51:11.671 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-12-06T03:51:11.734 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records in 2023-12-06T03:51:11.734 INFO:teuthology.orchestra.run.smithi017.stderr:1+0 records out 2023-12-06T03:51:11.734 INFO:teuthology.orchestra.run.smithi017.stderr:512 bytes copied, 0.000125908 s, 4.1 MB/s 2023-12-06T03:51:11.735 DEBUG:teuthology.orchestra.run.smithi017:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-12-06T03:51:11.792 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:51:11.792 DEBUG:teuthology.orchestra.run.smithi169:> dd if=/scratch_devs of=/dev/stdout 2023-12-06T03:51:11.807 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-06T03:51:11.807 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/nvme1n1 2023-12-06T03:51:11.863 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/nvme1n1 2023-12-06T03:51:11.863 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 240394 Links: 1 Device type: 103,1 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:50:41.845170919 +0000 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:50:41.793172035 +0000 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:50:41.793172035 +0000 2023-12-06T03:51:11.864 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:51:11.864 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-12-06T03:51:11.927 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:51:11.928 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:51:11.928 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000252255 s, 2.0 MB/s 2023-12-06T03:51:11.929 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-12-06T03:51:11.985 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/nvme2n1 2023-12-06T03:51:12.039 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/nvme2n1 2023-12-06T03:51:12.039 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:12.039 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 240444 Links: 1 Device type: 103,2 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:50:41.855170704 +0000 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:50:41.795171992 +0000 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:50:41.795171992 +0000 2023-12-06T03:51:12.040 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:51:12.040 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-12-06T03:51:12.103 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:51:12.104 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:51:12.104 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000239625 s, 2.1 MB/s 2023-12-06T03:51:12.105 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-12-06T03:51:12.161 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/nvme3n1 2023-12-06T03:51:12.216 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/nvme3n1 2023-12-06T03:51:12.216 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:12.216 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 240487 Links: 1 Device type: 103,3 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:50:41.866170468 +0000 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:50:41.798171928 +0000 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:50:41.798171928 +0000 2023-12-06T03:51:12.217 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:51:12.217 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-12-06T03:51:12.279 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:51:12.279 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:51:12.280 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000259698 s, 2.0 MB/s 2023-12-06T03:51:12.281 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-12-06T03:51:12.337 DEBUG:teuthology.orchestra.run.smithi169:> stat /dev/nvme4n1 2023-12-06T03:51:12.392 INFO:teuthology.orchestra.run.smithi169.stdout: File: /dev/nvme4n1 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Device: 6h/6d Inode: 243102 Links: 1 Device type: 103,4 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Access: 2023-12-06 03:50:41.877170232 +0000 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Modify: 2023-12-06 03:50:41.800171885 +0000 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout:Change: 2023-12-06 03:50:41.800171885 +0000 2023-12-06T03:51:12.393 INFO:teuthology.orchestra.run.smithi169.stdout: Birth: - 2023-12-06T03:51:12.393 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-12-06T03:51:12.456 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records in 2023-12-06T03:51:12.456 INFO:teuthology.orchestra.run.smithi169.stderr:1+0 records out 2023-12-06T03:51:12.456 INFO:teuthology.orchestra.run.smithi169.stderr:512 bytes copied, 0.000194405 s, 2.6 MB/s 2023-12-06T03:51:12.457 DEBUG:teuthology.orchestra.run.smithi169:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-12-06T03:51:12.513 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch apply osd --all-available-devices 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:11.375743+0000 mon.smithi017 (mon.0) 201 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: cluster 2023-12-06T03:51:11.494612+0000 mgr.smithi017.mljnlu (mgr.14180) 30 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.302630+0000 mon.smithi017 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.303626+0000 mon.smithi017 (mon.0) 203 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.304519+0000 mon.smithi017 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:51:12.575 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.335792+0000 mon.smithi017 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.341274+0000 mon.smithi017 (mon.0) 206 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.344877+0000 mon.smithi017 (mon.0) 207 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: 06T03:51:12.349352+0000 mon.smithi017 (mon.0) 208 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.350139+0000 mon.smithi017 (mon.0) 209 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-06T03:51:12.576 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:12 smithi169 conmon[87179]: audit 2023-12-06T03:51:12.350862+0000 mon.smithi017 (mon.0) 210 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:11.375743+0000 mon.smithi017 (mon 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: .0) 201 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: cluster 2023-12-06T03:51:11.494612+0000 mgr.smithi017.mljnlu (mgr.14180) 30 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:12.302630+0000 mon.smithi017 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:12.303626+0000 mon.smithi017 (mon.0) 203 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:12.304519+0000 mon.smithi017 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:51:12.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 12-06T03:51:12.335792+0000 mon.smithi017 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: -06T03:51:12.341274+0000 mon.smithi017 (mon.0) 206 : audit [INF] 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 06T03:51:12.344877+0000 mon.smithi017 (mon. 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 0) 207 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 2023-12-06T03:51:12. 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 349352+0000 mon.smithi017 (mon.0) 208 : audit [INF] 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12-06T03:51:12. 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 350139+0000 mon.smithi017 (mon.0) 209 : audit [DBG] 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:51:12.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 06T03:51:12.350862+0000 mon.smithi017 (mon. 2023-12-06T03:51:12.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:12 smithi017 conmon[82019]: 0) 210 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:13.660 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:13 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:12.305759+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:51:13.661 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:13 smithi169 conmon[87179]: 14180) 31 : cephadm [INF] Updating smithi017:/etc/ceph/ceph.conf 2023-12-06T03:51:13.661 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:13 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:12.306040+0000 mgr.smithi017.mljnlu (mgr.14180) 32 : cephadm [INF] Updating smithi169:/etc/ceph/ceph.conf 2023-12-06T03:51:13.661 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:13 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:12.349037+0000 mgr.smithi017.mljnlu (mgr.14180) 33 : cephadm [INF] Reconfiguring mon.smithi017 (unknown last config time)... 2023-12-06T03:51:13.661 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:13 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:12.351559+0000 mgr.smithi017.mljnlu (mgr.14180) 34 : cephadm [INF] Reconfiguring daemon mon.smithi017 on smithi017 2023-12-06T03:51:13.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:13 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:12.305759+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:13.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:13 smithi017 conmon[82019]: .14180) 31 : cephadm [INF] Updating smithi017:/etc/ceph/ceph.conf 2023-12-06T03:51:13.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:13 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:12.306040+0000 mgr.smithi017.mljnlu (mgr.14180) 32 : cephadm [INF] Updating smithi169:/etc/ceph/ceph.conf 2023-12-06T03:51:13.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:13 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:12.349037+0000 mgr.smithi017.mljnlu (mgr.14180) 33 : cephadm [INF] Reconfiguring mon.smithi017 (unknown last config time)... 2023-12-06T03:51:13.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:13 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:12.351559+0000 mgr.smithi017.mljnlu (mgr.14180) 34 : cephadm [INF] Reconfiguring daemon mon.smithi017 on smithi017 2023-12-06T03:51:14.331 INFO:teuthology.orchestra.run.smithi169.stdout:Scheduled osd.all-available-devices update... 2023-12-06T03:51:14.730 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: cluster 2023-12-06T03:51:13.494968+0000 mgr.smithi017.mljnlu (mgr.14180) 35 : 2023-12-06T03:51:14.730 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:14.731 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.330001+0000 mon.smithi017 (mon.0) 211 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:14.731 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.466363+0000 mon.smithi017 (mon.0) 212 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:14.731 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.467304+0000 mon.smithi017 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi017.mljnlu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-06T03:51:14.731 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.468111+0000 mon.smithi017 (mon.0) 214 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-06T03:51:14.731 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:14 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.468779+0000 mon.smithi017 (mon.0) 215 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:14.778 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2023-12-06T03:51:14.778 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:14.804 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: cluster 2023-12-06T03:51:13.494968+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:14.804 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: 35 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:14.804 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.330001+0000 mon.smithi017 (mon.0) 211 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:14.804 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.466363+0000 mon.smithi017 (mon.0) 212 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:14.805 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.467304+0000 mon.smithi017 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi017.mljnlu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-06T03:51:14.805 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.468111+0000 mon.smithi017 (mon.0) 214 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-06T03:51:14.805 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:14 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.468779+0000 mon.smithi017 (mon.0) 215 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: audit 2023-12-06T03:51:14.323816+0000 mgr.smithi017.mljnlu (mgr.14180) 36 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:14.325716+0000 mgr.smithi017.mljnlu (mgr.14180) 37 : cephadm [INF] Marking host: smithi017 for OSDSpec preview refresh. 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:14.325807+0000 mgr.smithi017.mljnlu (mgr.14180) 38 : cephadm [INF] Marking host: smithi169 for OSDSpec preview refresh. 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:14.326161+0000 mgr.smithi017.mljnlu (mgr.14180) 39 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:14.467008+0000 mgr.smithi017.mljnlu (mgr.14180) 40 : cephadm [INF] Reconfiguring mgr.smithi017.mljnlu (unknown last config time)... 2023-12-06T03:51:15.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:14.469377+0000 mgr.smithi017.mljnlu (mgr.14180) 41 : cephadm [INF] Reconfiguring daemon mgr.smithi017.mljnlu on smithi017 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: audit 2023-12-06T03:51:14.323816+0000 mgr.smithi017.mljnlu (mgr.14180) 36 : audit 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:14.325716+0000 mgr.smithi017.mljnlu (mgr.14180) 37 : cephadm [INF] Marking host: smithi017 for OSDSpec preview refresh. 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: cephadm 2023-12-06T03: 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: 51:14.325807+0000 mgr.smithi017.mljnlu (mgr.14180) 38 : cephadm [INF] Marking host: smithi169 for OSDSpec preview refresh. 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:14.326161+0000 mgr.smithi017.mljnlu (mgr.14180) 39 2023-12-06T03:51:16.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-12-06T03:51:16.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:14.467008+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:16.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: mgr.14180) 40 : cephadm [INF] Reconfiguring mgr.smithi017.mljnlu (unknown last config time)... 2023-12-06T03:51:16.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: cephadm 2023-12- 2023-12-06T03:51:16.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:15 smithi169 conmon[87179]: 06T03:51:14.469377+0000 mgr.smithi017.mljnlu (mgr.14180) 41 : cephadm [INF] Reconfiguring daemon mgr.smithi017.mljnlu on smithi017 2023-12-06T03:51:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: cluster 2023-12-06T03:51:15.495264+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: audit 2023-12-06T03:51:15.887433+0000 mon.smithi017 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: cephadm 2023-12-06 2023-12-06T03:51:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: T03:51:15.888099+0000 mgr.smithi017.mljnlu (mgr.14180) 43 : cephadm [INF] Reconfiguring alertmanager.smithi017 (dependencies changed)... 2023-12-06T03:51:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:15.894265+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:16 smithi169 conmon[87179]: .14180) 44 : cephadm [INF] Reconfiguring daemon alertmanager.smithi017 on smithi017 2023-12-06T03:51:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:16 smithi017 conmon[82019]: cluster 2023-12-06T03:51:15.495264+0000 2023-12-06T03:51:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:16 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:16 smithi017 conmon[82019]: audit 2023-12-06T03:51:15.887433+0000 mon.smithi017 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:16 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:15.888099+0000 mgr.smithi017.mljnlu (mgr.14180) 43 : cephadm [INF] Reconfiguring alertmanager.smithi017 (dependencies changed)... 2023-12-06T03:51:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:16 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:15.894265+0000 mgr.smithi017.mljnlu (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon alertmanager.smithi017 on smithi017 2023-12-06T03:51:17.522 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:17 smithi017 conmon[82019]: audit 2023-12-06T03:51:17.521779+0000 2023-12-06T03:51:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:17 smithi017 conmon[82019]: mon.smithi017 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.17:0/1867971709' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:18.222 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:17 smithi169 conmon[87179]: audit 2023-12-06T03:51:17.521779+0000 mon.smithi017 (mon.0 2023-12-06T03:51:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:17 smithi169 conmon[87179]: ) 217 : audit [DBG] from='client.? 172.21.15.17:0/1867971709' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:19.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:18 smithi017 conmon[82019]: cluster 2023-12-06T03:51:17.495496+0000 mgr.smithi017.mljnlu 2023-12-06T03:51:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:18 smithi017 conmon[82019]: (mgr.14180) 45 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:19.223 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:18 smithi169 conmon[87179]: cluster 2023-12-06T03:51:17.495496+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:18 smithi169 conmon[87179]: .14180) 45 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:20 smithi169 conmon[87179]: cluster 2023-12-06T03:51:19.495752+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:51:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:20 smithi169 conmon[87179]: ) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:21.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:20 smithi017 conmon[82019]: cluster 2023-12-06T03:51:19.495752 2023-12-06T03:51:21.287 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:20 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:21.413 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:21.979 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:22.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:21 smithi017 conmon[82019]: audit 2023-12-06T03:51:21.412871+0000 mon.smithi017 (mon.0) 218 : audit [DBG] from='client.? 172.21.15.17:0/3083076253' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:22.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:21 smithi017 conmon[82019]: audit 2023-12-06T03:51:21.456871+0000 mon.smithi017 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:22.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:21 smithi017 conmon[82019]: audit 2023-12-06T03:51:21.457730+0000 mon.smithi017 (mon.0) 220 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi017", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:51:22.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:21 smithi017 conmon[82019]: audit 2023-12-06T03:51:21.458377+0000 mon.smithi017 (mon.0) 221 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: audit 2023-12-06T03:51:21.412871+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:22.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: 218 : audit [DBG] from='client.? 172.21.15.17:0/3083076253' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:22.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: audit 2023-12-06T03:51:21.456871+0000 mon.smithi017 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:22.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:22.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: :51:21.457730+0000 mon.smithi017 (mon.0) 220 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi017", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:51:22.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: audit 2023-12-06T03:51:21.458377+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:22.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:21 smithi169 conmon[87179]: 221 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:22.980 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:22 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:21.457465+0000 mgr.smithi017.mljnlu (mgr.14180) 47 : cephadm [INF] Reconfiguring crash.smithi017 (monmap changed)... 2023-12-06T03:51:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:22 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:21.458858+0000 mgr.smithi017.mljnlu (mgr.14180) 48 : cephadm [INF] Reconfiguring daemon crash.smithi017 on smithi017 2023-12-06T03:51:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:22 smithi169 conmon[87179]: cluster 2023-12-06T03:51:21.495949+0000 mgr.smithi017.mljnlu (mgr.14180) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:22 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:51:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:22 smithi169 conmon[87179]: 51:22.723716+0000 mon.smithi017 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:23.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:22 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:21.457465+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:23.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:22 smithi017 conmon[82019]: 47 : cephadm [INF] Reconfiguring crash.smithi017 (monmap changed)... 2023-12-06T03:51:23.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:22 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:21.458858+0000 mgr.smithi017.mljnlu (mgr.14180) 48 : cephadm [INF] Reconfiguring daemon crash.smithi017 on smithi017 2023-12-06T03:51:23.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:22 smithi017 conmon[82019]: cluster 2023-12-06T03:51:21.495949+0000 mgr.smithi017.mljnlu (mgr.14180) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:23.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:22 smithi017 conmon[82019]: audit 2023-12-06T03:51:22.723716+0000 mon.smithi017 (mon.0) 222 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:23 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:22.724334+0000 mgr.smithi017.mljnlu (mgr.14180) 50 2023-12-06T03:51:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:23 smithi169 conmon[87179]: : cephadm [INF] Reconfiguring grafana.smithi017 (dependencies changed)... 2023-12-06T03:51:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:23 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:22.755519+0000 mgr.smithi017.mljnlu (mgr.14180) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi017 on smithi017 2023-12-06T03:51:24.259 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:23 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:22.724334+0000 mgr.smithi017.mljnlu (mgr.14180) 50 : cephadm [INF] Reconfiguring grafana.smithi017 (dependencies changed)... 2023-12-06T03:51:24.259 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:23 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:22.755519+0000 mgr.smithi017.mljnlu (mgr.14180) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi017 on smithi017 2023-12-06T03:51:25.138 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:25.162 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:24 smithi017 conmon[82019]: cluster 2023-12-06T03:51:23.496605+0000 mgr.smithi017.mljnlu (mgr.14180) 52 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:24 smithi169 conmon[87179]: cluster 2023-12-06T03:51:23.496605+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:24 smithi169 conmon[87179]: .14180) 52 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:25.842 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:26.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:25 smithi169 conmon[87179]: audit 2023-12-06T03:51:25.137101+0000 mon.smithi017 (mon.0) 223 : audit [DBG] from='client.? 172.21.15.17:0/4115886485' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:26.276 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:25 smithi017 conmon[82019]: audit 2023-12-06T03:51:25.137101+0000 mon.smithi017 (mon. 2023-12-06T03:51:26.276 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:25 smithi017 conmon[82019]: 0) 223 : audit [DBG] from='client.? 172.21.15.17:0/4115886485' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:26.843 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:27.244 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:26 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:51:27.245 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:26 smithi017 conmon[82019]: 03:51:25.496865+0000 mgr.smithi017.mljnlu (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:26 smithi169 conmon[87179]: cluster 2023-12-06T03:51:25.496865+0000 mgr.smithi017.mljnlu 2023-12-06T03:51:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:26 smithi169 conmon[87179]: (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:28.666 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:28 smithi017 conmon[82019]: cluster 2023-12-06T03:51:27.497100+0000 mgr.smithi017.mljnlu (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:28.666 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:28 smithi017 conmon[82019]: audit 2023-12-06T03:51:27.503925+0000 mon.smithi017 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:28.666 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:28 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:27.504798+0000 mgr.smithi017.mljnlu (mgr.14180) 55 : cephadm [INF] Reconfiguring prometheus.smithi017 (dependencies changed)... 2023-12-06T03:51:28.666 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:28 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:27.509220+0000 mgr.smithi017.mljnlu (mgr.14180) 56 : cephadm [INF] Reconfiguring daemon prometheus.smithi017 on smithi017 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: cluster 2023-12-06T03:51:27.497100+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: audit 2023-12-06T03:51:27.503925+0000 mon.smithi017 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: cephadm 2023-12-06T03: 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: 51:27.504798+0000 mgr.smithi017.mljnlu (mgr.14180) 55 : cephadm [INF] Reconfiguring prometheus.smithi017 (dependencies changed)... 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:27.509220+0000 mgr.smithi017.mljnlu (mgr.14180) 56 : cephadm 2023-12-06T03:51:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:28 smithi169 conmon[87179]: [INF] Reconfiguring daemon prometheus.smithi017 on smithi017 2023-12-06T03:51:29.444 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:29.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:29 smithi017 conmon[82019]: audit 2023-12-06T03:51:29.443376+0000 mon.smithi017 (mon 2023-12-06T03:51:29.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:29 smithi017 conmon[82019]: .0) 225 : audit [DBG] from='client.? 172.21.15.17:0/4141854034' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:29.973 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:30.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:29 smithi169 conmon[87179]: audit 2023-12-06T03:51:29.443376+0000 mon.smithi017 (mon.0) 225 : audit [DBG] from='client.? 172.21.15.17:0/4141854034' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:30.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:30 smithi017 conmon[82019]: cluster 2023-12-06T03:51:29.497276+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:30.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:30 smithi017 conmon[82019]: .14180) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:30.975 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:30 smithi169 conmon[87179]: cluster 2023-12-06T03:51:29.497276+0000 2023-12-06T03:51:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:30 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:32 smithi017 conmon[82019]: cluster 2023-12-06T03:51:31.497609+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:32 smithi017 conmon[82019]: mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:32.973 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:32 smithi169 conmon[87179]: cluster 2023-12-06T03:51:31.497609+0000 mgr.smithi017.mljnlu (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:32 smithi169 conmon[87179]: 2023-12-06T03:51:33.518 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: 03:51:32.608545+0000 mon.smithi017 (mon.0) 226 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:32.609244+0000 mgr.smithi017.mljnlu (mgr.14180) 59 : cephadm [INF] Reconfiguring crash.smithi169 (monmap changed)... 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: audit 2023-12-06T03:51:32.609556+0000 mon.smithi017 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi169", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: audit 2023-12-06T03:51:32.610318+0000 mon.smithi017 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:32.610924+0000 mgr.smithi017.mljnlu (mgr.14180) 60 : cephadm [INF] Reconfiguring daemon crash.smithi169 on smithi169 2023-12-06T03:51:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:33 smithi017 conmon[82019]: audit 2023-12-06T03:51:32.972368+0000 mon.smithi017 (mon.0) 229 : audit [DBG] from='client.? 172.21.15.17:0/2365608536' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: audit 2023-12-06T03:51:32.608545+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: 226 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:32.609244+0000 mgr.smithi017.mljnlu (mgr.14180) 59 : cephadm [INF] Reconfiguring crash.smithi169 (monmap changed)... 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: audit 2023-12-06T03:51:32.609556+0000 mon.smithi017 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi169", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: audit 2023-12-06T03:51:32.610318+0000 mon.smithi017 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:32.610924+0000 mgr.smithi017.mljnlu (mgr.14180) 60 : cephadm [INF] Reconfiguring daemon crash.smithi169 on smithi169 2023-12-06T03:51:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:33 smithi169 conmon[87179]: audit 2023-12-06T03:51:32.972368+0000 mon.smithi017 (mon.0) 229 : audit [DBG] from='client.? 172.21.15.17:0/2365608536' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:34.519 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: cluster 2023-12-06T03:51:33.497940+0000 mgr.smithi017.mljnlu (mgr.14180) 61 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: T03:51:33.813658+0000 mon.smithi017 (mon.0) 230 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:33.814231+0000 mgr.smithi017.mljnlu (mgr.14180) 62 : cephadm [INF] Reconfiguring mgr.smithi169.rlrcud (monmap changed)... 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: audit 2023-12-06T03:51:33.814534+0000 mon.smithi017 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi169.rlrcud", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-06T03:51:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: audit 2023-12-06T03:51:33.815345+0000 mon.smithi017 (mon.0) 232 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-06T03:51:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: audit 2023-12-06T03:51:33.816015+0000 2023-12-06T03:51:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: mon.smithi017 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:33.816612+0000 mgr.smithi017.mljnlu (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon mgr.smithi169.rlrcud on smithi169 2023-12-06T03:51:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:34 smithi169 conmon[87179]: 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: cluster 2023-12-06T03:51:33.497940+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: .14180) 61 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: audit 2023-12-06T03:51:33.813658+0000 mon.smithi017 (mon.0) 230 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:33.814231+0000 mgr.smithi017.mljnlu (mgr.14180) 62 : cephadm [INF] Reconfiguring mgr.smithi169.rlrcud (monmap changed)... 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: audit 2023-12-06T03:51:33.814534+0000 mon.smithi017 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi169.rlrcud", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: audit 2023-12-06T03:51:33.815345+0000 mon.smithi017 (mon.0) 232 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: audit 2023-12-06T03:51:33.816015+0000 mon.smithi017 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:34 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:33.816612+0000 mgr.smithi017.mljnlu (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon mgr.smithi169.rlrcud on smithi169 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: audit 2023-12-06T03:51:34.916268+0000 mon.smithi017 (mon.0) 234 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:34.916844+0000 mgr.smithi017.mljnlu (mgr.14180) 64 : cephadm [INF] Reconfiguring mon.smithi169 (monmap changed)... 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: audit 2023-12-06T03:51:34.917076+0000 mon.smithi017 (mon.0) 235 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: audit 2023-12-06T03:51:34.917725+0000 mon.smithi017 (mon.0) 236 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: audit 2023-12-06T03:51:34.918312+0000 mon.smithi017 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:36.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:35 smithi017 conmon[82019]: cephadm 2023-12-06T03:51:34.918782+0000 mgr.smithi017.mljnlu (mgr.14180) 65 : cephadm [INF] Reconfiguring daemon mon.smithi169 on smithi169 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: audit 2023-12-06T03:51:34.916268+0000 mon.smithi017 (mon.0) 234 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:34.916844+0000 mgr.smithi017.mljnlu (mgr.14180) 64 : cephadm [INF] Reconfiguring mon.smithi169 (monmap changed)... 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: audit 2023-12-06T03:51:34.917076+0000 mon.smithi017 (mon.0) 235 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: audit 2023-12-06T03:51:34.917725+0000 mon.smithi017 (mon.0) 236 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: audit 2023-12-06T03:51:34.918312+0000 mon.smithi017 (mon.0) 237 : audit [DBG] 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:35 smithi169 conmon[87179]: cephadm 2023-12-06T03:51:34.918782+0000 mgr.smithi017.mljnlu (mgr.14180) 65 : cephadm [INF] Reconfiguring daemon mon.smithi169 on smithi169 2023-12-06T03:51:36.465 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: cluster 2023-12-06T03:51:35.498190+0000 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 66 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:35.998673+0000 mon.smithi017 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36.001345+0000 mon.smithi017 (mon.0) 239 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36.002502+0000 mon.smithi017 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi017.front.sepia.ceph.com:9093"}]: dispatch 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51: 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 36.005786+0000 mon.smithi017 (mon.0) 241 : audit [INF] 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36. 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 011234+0000 mon.smithi017 (mon.0) 242 : audit [DBG] 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: .016010+0000 mon.smithi017 (mon.0) 243 : audit 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi017.front.sepia.ceph.com:3000"}]: dispatch 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: .020009+0000 mon.smithi017 (mon.0) 244 : audit 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51: 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 36.023909+0000 mon.smithi017 (mon.0) 245 : audit 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36. 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 027662+0000 mon.smithi017 (mon.0) 246 : audit [INF] 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi017.front.sepia.ceph.com:9095"}]: dispatch 2023-12-06T03:51:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:36. 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 032316+0000 mon.smithi017 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: 2023-12-06T03:51:36.036425+0000 mon.smithi017 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: (mon.0) 248 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: audit 2023 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: -12-06T03:51:36.464170+0000 mon.smithi017 ( 2023-12-06T03:51:37.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:36 smithi017 conmon[82019]: mon.0) 249 : audit [DBG] from='client.? 172.21.15.17:0/2386169188' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:37.082 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: cluster 2023-12-06T03:51:35.498190+0000 mgr.smithi017.mljnlu (mgr.14180) 66 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:35.998673+0000 mon.smithi017 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.001345+0000 mon.smithi017 (mon.0) 239 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.002502+0000 mon.smithi017 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi017.front.sepia.ceph.com:9093"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.005786+0000 mon.smithi017 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.011234+0000 mon.smithi017 (mon.0) 242 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.016010+0000 mon.smithi017 (mon.0) 243 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi017.front.sepia.ceph.com:3000"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.020009+0000 mon.smithi017 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.023909+0000 mon.smithi017 (mon.0) 245 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.027662+0000 mon.smithi017 (mon.0) 246 : audit 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi017.front.sepia.ceph.com:9095"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.032316+0000 mon.smithi017 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.036425+0000 mon.smithi017 (mon.0) 248 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.464170+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:36 smithi169 conmon[87179]: 249 : audit [DBG] from='client.? 172.21.15.17:0/2386169188' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:38.083 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.001675+0000 mgr.smithi017.mljnlu (mgr.14180) 67 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.002742+0000 mgr.smithi017.mljnlu (mgr.14180) 68 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi017.front.sepia.ceph.com:9093"}]: dispatch 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.011617+0000 mgr.smithi017.mljnlu (mgr.14180) 69 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.016325+0000 mgr.smithi017.mljnlu (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi017.front.sepia.ceph.com:3000"}]: dispatch 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.024330+0000 mgr.smithi017.mljnlu (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-06T03:51:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:37 smithi169 conmon[87179]: audit 2023-12-06T03:51:36.027968+0000 mgr.smithi017.mljnlu (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi017.front.sepia.ceph.com:9095"}]: dispatch 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06T03:51:36.001675+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: 14180) 67 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06T03:51:36.002742+0000 mgr.smithi017.mljnlu (mgr.14180) 68 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi017.front.sepia.ceph.com:9093"}]: dispatch 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06T03:51:36.011617 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 69 : audit [DBG] 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: 2023-12-06T03: 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: 51:36.016325+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: ) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi017.front.sepia.ceph.com:3000"}]: dispatch 2023-12-06T03:51:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: T03:51:36.024330+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: audit 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: 2023-12-06T03:51: 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: 36.027968+0000 mgr.smithi017.mljnlu (mgr.14180) 72 2023-12-06T03:51:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:37 smithi017 conmon[82019]: : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi017.front.sepia.ceph.com:9095"}]: dispatch 2023-12-06T03:51:39.206 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:38 smithi017 conmon[82019]: cluster 2023-12-06T03:51:37.498423+0000 mgr.smithi017.mljnlu (mgr.14180) 73 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:39.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:38 smithi017 conmon[82019]: audit 2023-12-06T03:51:38.242324+0000 mon.smithi017 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:39.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:38 smithi017 conmon[82019]: audit 2023-12-06T03:51:38.246182+0000 mon.smithi017 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:38 smithi169 conmon[87179]: cluster 2023-12-06T03:51:37.498423+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:51:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:38 smithi169 conmon[87179]: ) 73 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:38 smithi169 conmon[87179]: audit 2023-12-06T03:51:38.242324+0000 mon.smithi017 (mon.0) 250 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:38 smithi169 conmon[87179]: audit 2023-12-06T03:51:38.246182+0000 mon.smithi017 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:40.394 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:40.933 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:41.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:40 smithi017 conmon[82019]: cluster 2023-12-06T03:51:39.498647+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:51:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:40 smithi017 conmon[82019]: 74 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:40 smithi017 conmon[82019]: audit 2023-12-06T03:51:40.393547+0000 mon.smithi017 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.17:0/1362069882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:40 smithi169 conmon[87179]: cluster 2023-12-06T03:51:39.498647+0000 mgr.smithi017.mljnlu (mgr.14180) 74 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:40 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:51:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:40 smithi169 conmon[87179]: 06T03:51:40.393547+0000 mon.smithi017 (mon.0) 252 : audit [DBG] from='client.? 172.21.15.17:0/1362069882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:41.935 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:42.781 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: cluster 2023-12-06T03:51:41.498873+0000 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 75 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 51:41.527531+0000 mon.smithi017 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 2023-12-06T03:51:41.942070+0000 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: mon.smithi017 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: :51:41.942949+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 255 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: -06T03:51:41.943683+0000 mon.smithi017 ( 2023-12-06T03:51:42.782 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: -12-06T03:51:41.947312+0000 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: mon.smithi017 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 51:41.951022+0000 mon.smithi017 (mon.0) 258 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 03:51:41.954038+0000 mon.smithi017 (mon.0 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: ) 259 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 12-06T03:51:41.954955+0000 mon.smithi017 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: (mon.0) 260 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 2023-12- 2023-12-06T03:51:42.783 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: 06T03:51:41.955208+0000 mon.smithi017 2023-12-06T03:51:42.784 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: (mon.0) 261 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:42.784 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:42.784 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: :51:41.955744+0000 mon.smithi017 (mon.0) 262 : audit 2023-12-06T03:51:42.784 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:42 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: cluster 2023-12-06T03:51:41.498873+0000 mgr.smithi017.mljnlu (mgr.14180) 75 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.527531+0000 mon.smithi017 (mon.0) 253 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.942070+0000 mon.smithi017 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.942949+0000 mon.smithi017 (mon.0) 255 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.943683+0000 mon.smithi017 (mon.0) 256 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.947312+0000 mon.smithi017 (mon.0) 257 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.951022+0000 mon.smithi017 (mon.0) 258 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:51:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.954038+0000 mon.smithi017 (mon.0) 259 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12-06T03:51:41.954955+0000 mon.smithi017 (mon.0) 260 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: -06T03:51:41.955208+0000 mon.smithi017 (mon.0) 261 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: 12-06T03:51:41.955744+0000 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: mon.smithi017 (mon.0) 262 : audit [DBG] 2023-12-06T03:51:42.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:42 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:51:44.162 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:44.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:44 smithi017 conmon[82019]: cluster 2023-12-06T03:51:43.499100+0000 2023-12-06T03:51:44.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:44 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 76 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:44.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:44 smithi017 conmon[82019]: audit 2023-12-06T03:51:44.161534+0000 mon.smithi017 (mon.0) 263 : audit [DBG] from='client.? 172.21.15.17:0/4211255114' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:44.885 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-06T03:51:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:44 smithi169 conmon[87179]: cluster 2023-12-06T03:51:43.499100+0000 mgr.smithi017.mljnlu (mgr.14180) 76 2023-12-06T03:51:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:44 smithi169 conmon[87179]: : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:44 smithi169 conmon[87179]: audit 2023-12-06T03:51:44.161534+0000 mon.smithi017 (mon.0) 263 : audit [DBG] from='client.? 172.21.15.17:0/4211255114' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:45 smithi017 conmon[82019]: audit 2023-12-06T03:51:44.604484+0000 mon.smithi169 (mon.1) 2 : audit [INF] from='client.? 172.21.15.169:0/123766535' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]: dispatch 2023-12-06T03:51:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:45 smithi017 conmon[82019]: audit 2023-12-06T03:51:44.605086+0000 mon.smithi017 (mon.0) 264 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]: dispatch 2023-12-06T03:51:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:45 smithi017 conmon[82019]: audit 2023-12-06T03:51:44.608162+0000 mon.smithi017 (mon.0) 265 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]': finished 2023-12-06T03:51:45.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:45 smithi017 conmon[82019]: cluster 2023-12-06T03:51:44.608211+0000 mon.smithi017 (mon.0) 266 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-12-06T03:51:45.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:45 smithi017 conmon[82019]: audit 2023-12-06T03:51:44.608292+0000 mon.smithi017 (mon.0) 267 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:45.886 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:46.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:45 smithi169 conmon[87179]: audit 2023-12-06T03:51:44.604484+0000 mon.smithi169 (mon.1) 2 : audit [INF] from='client.? 172.21.15.169:0/123766535' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]: dispatch 2023-12-06T03:51:46.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:45 smithi169 conmon[87179]: audit 2023-12-06T03:51:44.605086+0000 mon.smithi017 (mon.0) 264 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]: dispatch 2023-12-06T03:51:46.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:45 smithi169 conmon[87179]: audit 2023-12-06T03:51:44.608162+0000 mon.smithi017 (mon.0) 265 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f9fcc739-f350-47fd-93f9-5d882e83828c"}]': finished 2023-12-06T03:51:46.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:45 smithi169 conmon[87179]: cluster 2023-12-06T03:51:44.608211+0000 mon.smithi017 (mon.0) 266 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-12-06T03:51:46.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:45 smithi169 conmon[87179]: audit 2023-12-06T03:51:44.608292+0000 mon.smithi017 (mon.0) 267 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: cluster 2023-12-06T03:51:45.499371+0000 mgr.smithi017.mljnlu (mgr.14180) 77 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: audit 2023-12-06T03:51:45.648430+0000 mon.smithi169 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.169:0/5510432' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: audit 2023-12-06T03:51:45.746444+0000 mon.smithi017 (mon.0) 268 : audit [INF] from='client.? 172.21.15.17:0/578925776' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b7ee7f84-b024-4a4f-a8e3-01a610a552f9"}]: dispatch 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: audit 2023-12-06T03:51:45.749735+0000 mon.smithi017 (mon.0) 269 : audit [INF] from='client.? 172.21.15.17:0/578925776' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b7ee7f84-b024-4a4f-a8e3-01a610a552f9"}]': finished 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: cluster 2023-12-06T03:51:45.749781+0000 mon.smithi017 (mon.0) 270 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: audit 2023-12-06T03:51:45.749910+0000 mon.smithi017 (mon.0) 271 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:46 smithi017 conmon[82019]: audit 2023-12-06T03:51:45.750290+0000 mon.smithi017 (mon.0) 272 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: cluster 2023-12-06T03:51:45.499371+0000 mgr.smithi017.mljnlu (mgr.14180) 77 : 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: audit 2023-12-06T03:51:45.648430+0000 mon.smithi169 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.169:0/5510432' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: audit 2023-12-06T03:51:45.746444+0000 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: mon.smithi017 (mon.0) 268 : audit [INF] from='client.? 172.21.15.17:0/578925776' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b7ee7f84-b024-4a4f-a8e3-01a610a552f9"}]: dispatch 2023-12-06T03:51:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: -06T03:51:45.749735+0000 mon.smithi017 (mon.0) 269 : audit [INF] from='client.? 172.21.15.17:0/578925776' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b7ee7f84-b024-4a4f-a8e3-01a610a552f9"}]': finished 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: cluster 2023-12-06T03:51:45.749781+0000 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: mon.smithi017 (mon.0) 270 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: -06T03:51:45.749910+0000 mon.smithi017 ( 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: mon.0) 271 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: 03:51:45.750290+0000 mon.smithi017 (mon.0 2023-12-06T03:51:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:46 smithi169 conmon[87179]: ) 272 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:47.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:47 smithi017 conmon[82019]: audit 2023-12-06T03:51:46.948652+0000 mon.smithi017 (mon.0 2023-12-06T03:51:47.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:47 smithi017 conmon[82019]: ) 273 : audit [DBG] from='client.? 172.21.15.17:0/2234929191' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:47.830 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:48.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:47 smithi169 conmon[87179]: audit 2023-12-06T03:51:46.948652+0000 mon.smithi017 (mon.0) 273 : 2023-12-06T03:51:48.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:47 smithi169 conmon[87179]: audit [DBG] from='client.? 172.21.15.17:0/2234929191' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:48.344 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1701834705,"num_remapped_pgs":0} 2023-12-06T03:51:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: cluster 2023-12-06T03:51:47.499640+0000 mgr.smithi017.mljnlu (mgr.14180) 78 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: 2023-12-06T03:51:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:47.829256+0000 mon.smithi017 (mon.0) 274 : audit [DBG] from='client.? 172.21.15.17:0/1134219857' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:48.156186+0000 mon.smithi169 (mon.1) 4 : audit [INF] from='client.? 172.21.15.169:0/1576852069' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]: dispatch 2023-12-06T03:51:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:48.156757+0000 mon.smithi017 (mon.0) 275 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]: dispatch 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:48.160058+0000 mon.smithi017 (mon.0) 276 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]': finished 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: cluster 2023-12-06T03:51:48.160119+0000 mon.smithi017 ( 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: mon.0) 277 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:48.160232+0000 mon.smithi017 (mon.0) 278 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: :51:48.160513+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: 279 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: audit 2023-12-06T03:51:48.160727+0000 mon.smithi017 2023-12-06T03:51:49.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:48 smithi169 conmon[87179]: (mon.0) 280 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: cluster 2023-12-06T03:51:47.499640+0000 mgr.smithi017.mljnlu (mgr.14180) 78 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:47.829256+0000 mon.smithi017 (mon.0) 274 : audit [DBG] from='client.? 172.21.15.17:0/1134219857' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:48.156186+0000 mon.smithi169 (mon.1) 4 : audit [INF] from='client.? 172.21.15.169:0/1576852069' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]: dispatch 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:48.156757+0000 mon.smithi017 (mon.0) 275 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]: dispatch 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:48.160058+0000 mon.smithi017 (mon.0) 276 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0e734dbb-2b46-4812-bf08-6fce15584686"}]': finished 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: cluster 2023-12-06T03:51:48.160119+0000 mon.smithi017 (mon.0) 277 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:48.160232+0000 mon.smithi017 (mon.0) 278 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023-12-06T03:51:48.160513+0000 mon.smithi017 (mon.0) 279 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: audit 2023 2023-12-06T03:51:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:48 smithi017 conmon[82019]: -12-06T03:51:48.160727+0000 mon.smithi017 (mon.0) 280 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:49.345 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:49.624 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.251516+0000 mon.smithi169 (mon. 2023-12-06T03:51:49.624 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: 1) 5 : audit [DBG] from='client.? 172.21.15.169:0/3455385332' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.499764+0000 mon.smithi017 (mon.0) 281 : audit [INF] from='client.? 172.21.15.17:0/3627100491' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5004af9c-1860-4adf-a310-fd3e710e5c44"}]: dispatch 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.503262+0000 mon.smithi017 (mon.0) 282 : audit [INF] from='client.? 172.21.15.17:0/3627100491' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5004af9c-1860-4adf-a310-fd3e710e5c44"}]': finished 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: cluster 2023-12-06T03:51:49.503309+0000 mon.smithi017 (mon.0) 283 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.503450+0000 mon.smithi017 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.503864+0000 mon.smithi017 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.504135+0000 mon.smithi017 (mon.0) 286 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:49.625 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:49 smithi017 conmon[82019]: audit 2023-12-06T03:51:49.504394+0000 mon.smithi017 (mon.0) 287 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:50.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03:51:49.251516+0000 mon.smithi169 (mon. 2023-12-06T03:51:50.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: 1) 5 : audit [DBG] from='client.? 172.21.15.169:0/3455385332' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:50.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03:51:49.499764+0000 mon.smithi017 (mon.0) 281 : audit [INF] 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: from='client.? 172.21.15.17:0/3627100491' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5004af9c-1860-4adf-a310-fd3e710e5c44"}]: dispatch 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03:51:49. 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: 503262+0000 mon.smithi017 (mon.0) 282 : audit [INF] from='client.? 172.21.15.17:0/3627100491' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5004af9c-1860-4adf-a310-fd3e710e5c44"}]': finished 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: cluster 2023-12-06T03:51:49.503309+0000 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: mon.smithi017 (mon.0) 283 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: 51:49.503450+0000 mon.smithi017 (mon.0) 284 : audit [DBG] 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: 2023-12-06T03:51:49.503864+0000 mon.smithi017 (mon.0) 285 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06T03:51:49. 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: 504135+0000 mon.smithi017 (mon.0) 286 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:50.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:51:50.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: T03:51:49.504394+0000 mon.smithi017 (mon.0) 287 2023-12-06T03:51:50.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:49 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:50.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:50 smithi017 conmon[82019]: cluster 2023-12-06T03:51:49.499882+0000 mgr.smithi017.mljnlu (mgr.14180) 79 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:50 smithi169 conmon[87179]: cluster 2023-12-06T03:51:49.499882+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:51:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:50 smithi169 conmon[87179]: ) 79 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:51.433 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:51.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:51 smithi017 conmon[82019]: audit 2023-12-06T03:51:50.966128+0000 mon.smithi017 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.17:0/3747293028' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:51.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:51 smithi017 conmon[82019]: audit 2023-12-06T03:51:51.431898+0000 mon.smithi017 (mon.0) 289 : audit [DBG] from='client.? 172.21.15.17:0/2330536777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:51.913 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1701834709,"num_remapped_pgs":0} 2023-12-06T03:51:51.934 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:51 smithi169 conmon[87179]: audit 2023-12-06T03:51:50.966128+0000 mon.smithi017 2023-12-06T03:51:51.934 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:51 smithi169 conmon[87179]: (mon.0) 288 : audit [DBG] from='client.? 172.21.15.17:0/3747293028' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:51.934 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:51 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.431898+0000 mon.smithi017 (mon.0) 289 : audit [DBG] from='client.? 172.21.15.17:0/2330536777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:51.934 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:51 smithi169 conmon[87179]: 2023-12-06T03:51:52.915 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: cluster 2023-12-06T03:51:51.500157+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 14180) 80 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12-06T03:51:51.763711+0000 mon.smithi169 (mon.1) 6 : audit [INF] from='client.? 172.21.15.169:0/3643408828' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]: dispatch 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12-06T03:51:51.764312+0000 mon.smithi017 (mon.0) 290 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]: dispatch 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12-06T03:51:51. 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 767757+0000 mon.smithi017 (mon.0) 291 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]': finished 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:51:52.947 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 03:51:51.767818+0000 mon.smithi017 (mon.0) 292 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 2023-12-06T03:51:51.767928+0000 mon.smithi017 (mon 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: .0) 293 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: -06T03:51:51.768204+0000 mon.smithi017 (mon. 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 0) 294 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: -06T03:51:51.768381+0000 mon.smithi017 (mon 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: .0) 295 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 12-06T03:51:51.768579+0000 mon.smithi017 (mon 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: .0) 296 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: 12-06T03:51:51.768757+0000 mon.smithi017 (mon 2023-12-06T03:51:52.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:52 smithi017 conmon[82019]: .0) 297 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: cluster 2023-12-06T03:51:51.500157+0000 mgr.smithi017.mljnlu (mgr.14180) 80 : cluster [DBG] 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.763711+0000 mon.smithi169 (mon.1) 6 : audit [INF] from='client.? 172.21.15.169:0/3643408828' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]: dispatch 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.764312+0000 mon.smithi017 (mon.0) 290 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]: dispatch 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.767757+0000 mon.smithi017 (mon.0) 291 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "adba6f44-1379-4eab-8cbd-b0e07c84b02d"}]': finished 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: cluster 2023-12-06T03:51:51.767818+0000 mon.smithi017 (mon.0) 292 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2023-12-06T03:51:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.767928+0000 mon.smithi017 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:53.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.768204+0000 mon.smithi017 (mon.0) 294 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:53.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.768381+0000 mon.smithi017 (mon.0) 295 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:53.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.768579+0000 mon.smithi017 (mon.0) 296 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:53.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:52 smithi169 conmon[87179]: audit 2023-12-06T03:51:51.768757+0000 mon.smithi017 (mon.0) 297 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:53.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51 2023-12-06T03:51:53.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: :52.855604+0000 mon.smithi169 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.169:0/1457959384' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:53.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.517476+0000 mon.smithi017 (mon.0) 298 : audit [INF] from='client.? 172.21.15.17:0/1361879564' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f68456f0-12f1-4c2b-bbf1-a0f047531c25"}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.521387+0000 mon.smithi017 (mon.0) 299 : audit [INF] from='client.? 172.21.15.17:0/1361879564' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f68456f0-12f1-4c2b-bbf1-a0f047531c25"}]': finished 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: cluster 2023-12-06T03:51:53.521440+0000 mon.smithi017 (mon.0) 300 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.521547+0000 mon.smithi017 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.521838+0000 mon.smithi017 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.522021+0000 mon.smithi017 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.522222+0000 mon.smithi017 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.522410+0000 mon.smithi017 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:53.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:53 smithi017 conmon[82019]: audit 2023-12-06T03:51:53.522597+0000 mon.smithi017 (mon.0) 306 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:54.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:52.855604+0000 mon.smithi169 (mon.1) 7 : audit 2023-12-06T03:51:54.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: [DBG] from='client.? 172.21.15.169:0/1457959384' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:54.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:53.517476+0000 mon.smithi017 (mon.0) 298 : audit [INF] from='client.? 172.21.15.17:0/1361879564' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f68456f0-12f1-4c2b-bbf1-a0f047531c25"}]: dispatch 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:53.521387+0000 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: mon.smithi017 (mon.0) 299 : audit 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: [INF] from='client.? 172.21.15.17:0/1361879564' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f68456f0-12f1-4c2b-bbf1-a0f047531c25"}]': finished 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: cluster 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12-06T03:51 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: :53.521440+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 300 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: -06T03:51:53.521547 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 301 : audit 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12-06 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: T03:51:53.521838+0000 mon.smithi017 ( 2023-12-06T03:51:54.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12-06 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: T03:51:53.522021+0000 mon.smithi017 (mon 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: .0) 303 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12-06 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: T03:51:53.522222+0000 mon.smithi017 (mon 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: .0) 304 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: -06T03:51:53.522410+0000 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: mon.smithi017 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: :51:53.522597+0000 mon.smithi017 (mon 2023-12-06T03:51:54.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:53 smithi169 conmon[87179]: .0) 306 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:55.000 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:54 smithi169 conmon[87179]: cluster 2023-12-06T03:51:53.500408+0000 mgr.smithi017.mljnlu (mgr.14180) 81 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:55.024 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:54 smithi017 conmon[82019]: cluster 2023-12-06T03:51:53.500408+0000 mgr.smithi017.mljnlu (mgr.14180) 81 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:55.592 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1701834713,"num_remapped_pgs":0} 2023-12-06T03:51:55.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.995878+0000 mon.smithi017 (mon.0) 307 : audit [DBG] from='client.? 172.21.15.17:0/3139633155' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:54.998717+0000 mon.smithi017 (mon.0) 308 : audit [DBG] from='client.? 172.21.15.17:0/3481030232' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: -06T03:51:55.347953+0000 mon.smithi169 (mon.1 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: ) 8 : audit [INF] from='client.? 172.21.15.169:0/560543113' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]: dispatch 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: T03:51:55.348455+0000 mon.smithi017 ( 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: mon.0) 309 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]: dispatch 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T03:51 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: :55.352018+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 310 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]': finished 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: cluster 2023- 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 12-06T03:51:55. 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 352078+0000 mon.smithi017 (mon.0) 311 : cluster 2023-12-06T03:51:55.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 03:51:55.352175+0000 mon.smithi017 (mon. 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 0) 312 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: T03:51:55.352417+0000 mon.smithi017 ( 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: -12-06T03:51: 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 55.352564+0000 mon.smithi017 (mon.0) 314 : 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T03:51:55.352721+0000 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: mon.smithi017 (mon.0) 315 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:55.752 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T03:51: 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 55.352871+0000 mon.smithi017 (mon.0) 316 : 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 06T03:51:55.353028+0000 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: mon.smithi017 (mon.0) 317 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: 06T03:51:55.353186+0000 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: mon.smithi017 (mon.0) 318 : audit [DBG] 2023-12-06T03:51:55.753 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:55 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:54.995878+0000 mon.smithi017 (mon.0) 307 : 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit [DBG] from='client.? 172.21.15.17:0/3139633155' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:54.998717+0000 mon.smithi017 (mon.0) 308 : audit [DBG] from='client.? 172.21.15.17:0/3481030232' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.347953+0000 mon.smithi169 (mon.1) 8 : audit [INF] from='client.? 172.21.15.169:0/560543113' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]: dispatch 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.348455+0000 mon.smithi017 (mon.0) 309 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]: dispatch 2023-12-06T03:51:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.352018+0000 mon.smithi017 (mon.0) 310 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3e34478d-ec96-4a9b-8703-78079aff7381"}]': finished 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: cluster 2023-12-06T03:51:55.352078+0000 mon.smithi017 (mon.0) 311 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.352175+0000 mon.smithi017 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.352417+0000 mon.smithi017 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: .352564+0000 mon.smithi017 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:55.352721+0000 mon.smithi017 (mon.0) 315 : audit 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: 2023-12-06T03:51:55.352871+0000 2023-12-06T03:51:56.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: mon.smithi017 (mon.0) 316 : audit [DBG] 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: 2023-12-06T03:51: 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: 55.353028+0000 mon.smithi017 (mon.0) 317 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: audit 2023 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: -12-06T03:51:55.353186+0000 mon.smithi017 (mon.0) 318 : audit 2023-12-06T03:51:56.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:55 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:51:56.593 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:51:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:56 smithi169 conmon[87179]: cluster 2023-12-06T03:51:55.500661+0000 mgr.smithi017.mljnlu (mgr.14180) 82 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:56 smithi169 conmon[87179]: audit 2023-12-06T03:51: 2023-12-06T03:51:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:56 smithi169 conmon[87179]: 56.469843+0000 mon.smithi169 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.169:0/3896869881' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:57.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:56 smithi017 conmon[82019]: cluster 2023-12-06T03:51:55.500661 2023-12-06T03:51:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:56 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 82 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:56 smithi017 conmon[82019]: audit 2023-12-06T03:51:56.469843+0000 mon.smithi169 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.169:0/3896869881' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.574736+0000 mon.smithi017 (mon.0) 319 : audit [INF] from='client.? 172.21.15.17:0/1210138133' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7"}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.578450+0000 mon.smithi017 (mon.0) 320 : audit [INF] from='client.? 172.21.15.17:0/1210138133' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7"}]': finished 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: cluster 2023-12-06T03:51:57.578529+0000 mon.smithi017 (mon.0) 321 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.578623+0000 mon.smithi017 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.578862+0000 mon.smithi017 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579011+0000 mon.smithi017 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579181+0000 mon.smithi017 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579346+0000 mon.smithi017 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579526+0000 mon.smithi017 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579668+0000 mon.smithi017 (mon.0) 328 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:51:57.837 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:57 smithi017 conmon[82019]: audit 2023-12-06T03:51:57.579821+0000 mon.smithi017 (mon.0) 329 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03:51:57.574736+0000 mon.smithi017 (mon.0) 319 : audit [INF] from='client.? 172.21.15.17:0/1210138133' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7"}]: dispatch 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: :51:57.578450+0000 mon.smithi017 (mon.0) 320 : audit [INF] from='client.? 172.21.15.17:0/1210138133' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7"}]': finished 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: cluster 2023-12-06T03:51:57.578529+0000 mon.smithi017 (mon.0) 321 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03:51:57.578623+0000 mon.smithi017 (mon 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: .0) 322 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: :51:57.578862+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:58.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: 323 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: :51:57.579011+0000 mon.smithi017 (mon.0) 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: 324 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: T03:51:57.579181+0000 mon.smithi017 (mon 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: .0) 325 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: 51:57.579346+0000 mon.smithi017 (mon.0) 326 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: :51:57.579526+0000 mon.smithi017 (mon.0 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: ) 327 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: T03:51:57.579668+0000 mon.smithi017 (mon. 2023-12-06T03:51:58.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: 0) 328 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:51:58.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:51:58.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: 06T03:51:57.579821+0000 mon.smithi017 ( 2023-12-06T03:51:58.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:57 smithi169 conmon[87179]: mon.0) 329 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:51:58.609 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:51:59.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:58 smithi169 conmon[87179]: cluster 2023-12-06T03:51:57.500906+0000 mgr.smithi017.mljnlu (mgr.14180) 83 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:59.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:58 smithi169 conmon[87179]: audit 2023-12-06T03:51:58.608296+0000 mon.smithi017 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.17:0/4226218489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:59.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:58 smithi017 conmon[82019]: cluster 2023-12-06T03:51:57.500906+0000 mgr.smithi017.mljnlu (mgr.14180) 83 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:51:59.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:58 smithi017 conmon[82019]: audit 2023-12-06T03:51:58.608296+0000 mon.smithi017 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.17:0/4226218489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:51:59.048 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:51:59.912 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:51:59 smithi169 conmon[87179]: audit 2023-12-06T03:51:58.980802+0000 mon.smithi017 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.17:0/2474881758' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:52:00.050 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:00.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:59 smithi017 conmon[82019]: audit 2023-12-06T03:51:58.980802+0000 mon.smithi017 (mon.0) 331 : 2023-12-06T03:52:00.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:51:59 smithi017 conmon[82019]: audit [DBG] from='client.? 172.21.15.17:0/2474881758' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-06T03:52:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:00 smithi169 conmon[87179]: cluster 2023-12-06T03:51:59.501195+0000 mgr.smithi017.mljnlu 2023-12-06T03:52:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:00 smithi169 conmon[87179]: (mgr.14180) 84 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:00 smithi017 conmon[82019]: cluster 2023-12-06T03:51:59.501195+0000 mgr.smithi017.mljnlu (mgr.14180) 84 : cluster [DBG] 2023-12-06T03:52:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:00 smithi017 conmon[82019]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:01.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:01 smithi017 conmon[82019]: audit 2023-12-06T03:52:01.533581+0000 mon.smithi017 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-12-06T03:52:01.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:01 smithi017 conmon[82019]: audit 2023-12-06T03:52:01.534248+0000 mon.smithi017 (mon.0) 333 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:02.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:01 smithi169 conmon[87179]: audit 2023-12-06T03:52:01.533581+0000 mon.smithi017 (mon. 2023-12-06T03:52:02.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:01 smithi169 conmon[87179]: 0) 332 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-12-06T03:52:02.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:01 smithi169 conmon[87179]: audit 2023-12-06T03:52:01.534248+0000 mon.smithi017 (mon.0) 333 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:02.218 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:02.704 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:02.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:02 smithi169 conmon[87179]: cluster 2023-12-06T03:52:01.501410+0000 mgr.smithi017.mljnlu (mgr.14180) 85 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:02.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:02 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:01.534798+0000 mgr.smithi017.mljnlu (mgr.14180) 86 : cephadm [INF] Deploying daemon osd.0 on smithi169 2023-12-06T03:52:02.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:02 smithi169 conmon[87179]: audit 2023-12-06T03:52:02.217934+0000 mon.smithi017 (mon.0) 334 : audit [DBG] from='client.? 172.21.15.17:0/4036230300' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:02.900 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:02 smithi017 conmon[82019]: cluster 2023-12-06T03:52:01.501410+0000 mgr.smithi017.mljnlu (mgr.14180) 85 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:02.901 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:02 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:01.534798+0000 mgr.smithi017.mljnlu (mgr.14180) 86 : cephadm [INF] Deploying daemon osd.0 on smithi169 2023-12-06T03:52:02.901 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:02 smithi017 conmon[82019]: audit 2023-12-06T03:52:02.217934+0000 mon.smithi017 (mon.0) 334 : audit [DBG] from='client.? 172.21.15.17:0/4036230300' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:03.705 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:04.753 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:04 smithi017 conmon[82019]: cluster 2023-12-06T03:52:03.501669+0000 mgr.smithi017.mljnlu (mgr.14180) 87 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:04.990 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:04 smithi169 conmon[87179]: cluster 2023-12-06T03:52:03.501669+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:52:04.990 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:04 smithi169 conmon[87179]: .14180) 87 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:05.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:05 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.058428+0000 mon.smithi017 (mon 2023-12-06T03:52:05.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:05 smithi017 conmon[82019]: .0) 335 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-12-06T03:52:05.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:05 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.059013+0000 mon.smithi017 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:05.929 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:05 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.058428+0000 mon.smithi017 (mon.0) 335 2023-12-06T03:52:05.929 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:05 smithi169 conmon[87179]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-12-06T03:52:05.929 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:05 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.059013+0000 mon.smithi017 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:05.957 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:06.759 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:05.059541+0000 mgr.smithi017.mljnlu 2023-12-06T03:52:06.759 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: (mgr.14180) 88 : cephadm [INF] Deploying daemon osd.1 on smithi017 2023-12-06T03:52:06.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: cluster 2023-12-06T03:52:05.501916+0000 mgr.smithi017.mljnlu (mgr.14180) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:06.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.956415+0000 mon.smithi017 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.17:0/2266447816' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:06.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.972395+0000 mon.smithi017 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:06.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.973035+0000 mon.smithi017 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-12-06T03:52:06.760 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:06 smithi017 conmon[82019]: audit 2023-12-06T03:52:05.973609+0000 mon.smithi017 (mon.0) 340 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:06.776 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:05.059541+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: .14180) 88 : cephadm [INF] Deploying daemon osd.1 on smithi017 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: cluster 2023-12-06T03:52:05.501916+0000 mgr.smithi017.mljnlu (mgr.14180) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.956415+0000 mon.smithi017 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.17:0/2266447816' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.972395+0000 mon.smithi017 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.973035+0000 mon.smithi017 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-12-06T03:52:06.886 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:06 smithi169 conmon[87179]: audit 2023-12-06T03:52:05.973609+0000 mon.smithi017 (mon.0) 340 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:07.778 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:07.923 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:07 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:05.974182+0000 mgr.smithi017.mljnlu (mgr.14180) 90 : cephadm [INF] Deploying daemon osd.2 on smithi169 2023-12-06T03:52:07.971 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:07 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:05.974182+0000 mgr.smithi017.mljnlu (mgr.14180) 90 : cephadm [INF] Deploying daemon osd.2 on smithi169 2023-12-06T03:52:08.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:08 smithi017 conmon[82019]: cluster 2023-12-06T03 2023-12-06T03:52:08.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:08 smithi017 conmon[82019]: :52:07.502220+0000 mgr.smithi017.mljnlu (mgr.14180) 91 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:09.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:08 smithi169 conmon[87179]: cluster 2023-12-06T03:52:07.502220 2023-12-06T03:52:09.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:08 smithi169 conmon[87179]: +0000 mgr.smithi017.mljnlu (mgr.14180) 91 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:09.800 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:09.978 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:09 smithi017 conmon[82019]: audit 2023-12-06T03:52:09.085856+0000 mon.smithi169 ( 2023-12-06T03:52:09.978 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:09 smithi017 conmon[82019]: mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-06T03:52:09.978 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:09 smithi017 conmon[82019]: audit 2023-12-06T03:52:09.086227+0000 mon.smithi017 (mon.0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-06T03:52:10.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:09 smithi169 conmon[87179]: audit 2023-12-06T03:52:09.085856+0000 mon.smithi169 (mon 2023-12-06T03:52:10.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:09 smithi169 conmon[87179]: .1) 10 : audit [INF] from='osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-06T03:52:10.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:09 smithi169 conmon[87179]: audit 2023-12-06T03:52:09.086227+0000 mon.smithi017 (mon. 2023-12-06T03:52:10.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:09 smithi169 conmon[87179]: 0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-06T03:52:10.644 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: cluster 2023-12-06T03:52:09.502443+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: .14180) 92 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:09.678376+0000 mon.smithi017 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: cluster 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.678480+0000 mon.smithi017 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-12-06T03:52:10.972 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.678615+0000 mon.smithi017 (mon.0) 344 : audit 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: -06T03:52:09.679007+0000 mon.smithi017 (mon.0) 345 : audit 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.679241+0000 2023-12-06T03:52:10.973 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: mon.smithi017 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 03:52:09.679468+0000 mon.smithi017 (mon.0) 347 : 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.679719+0000 mon.smithi017 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:09 2023-12-06T03:52:10.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: .679940+0000 mon.smithi017 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 06T03:52:09.679947+0000 mon.smithi169 (mon.1) 11 : audit 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: [INF] from='osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.680171+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 350 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:09. 2023-12-06T03:52:10.975 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 680480+0000 mon.smithi017 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 2023-12-06T03:52:09.680785+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:09.798626 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.17:0/78584898' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:52:10.976 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 06T03:52:10.233799+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 354 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06T03:52:10. 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: 234420+0000 mon.smithi017 (mon.0) 355 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: T03:52:10.234988+0000 mon.smithi017 (mon.0) 356 : audit 2023-12-06T03:52:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:10 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: cluster 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 2023-12-06T03:52:09.502443+0000 mgr.smithi017.mljnlu (mgr.14180) 92 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:09.678376+0000 mon.smithi017 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: cluster 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 2023-12-06T03:52:09.678480+0000 mon.smithi017 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 12-06T03:52:09.678615+0000 mon.smithi017 (mon.0 2023-12-06T03:52:10.994 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: ) 344 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 12-06T03:52:09.679007+0000 mon.smithi017 (mon.0 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: ) 345 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: :09.679241+0000 mon.smithi017 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 12-06T03:52:09.679468+0000 mon.smithi017 (mon.0) 347 : audit 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 2023-12-06T03:52:09.679719+0000 mon.smithi017 (mon 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: .0) 348 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 03:52:09.679940+0000 mon.smithi017 (mon.0) 349 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:10.995 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: -12-06T03:52:09.679947+0000 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: mon.smithi169 (mon.1) 11 : audit 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: [INF] from='osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: T03:52:09.680171+0000 mon.smithi017 (mon.0) 350 : 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: 2023-12-06T03:52:09.680480+0000 mon.smithi017 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:09 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: .680785+0000 mon.smithi017 (mon.0) 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:09.798626+0000 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: mon.smithi017 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.17:0/78584898' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.233799+0000 mon.smithi017 ( 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: mon.0) 354 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:10.996 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.234420 2023-12-06T03:52:10.997 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 355 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-12-06T03:52:10.997 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:52:10.997 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:10 smithi169 conmon[87179]: :52:10.234988+0000 mon.smithi017 (mon.0) 356 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:11.645 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:11.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:10.235511+0000 mgr.smithi017.mljnlu 2023-12-06T03:52:11.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: (mgr.14180) 93 : cephadm [INF] Deploying daemon osd.4 on smithi169 2023-12-06T03:52:11.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.678496+0000 mon.smithi017 (mon.0) 357 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:11.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: cluster 2023-12-06T03:52:10.678562+0000 mon.smithi017 (mon.0) 358 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-12-06T03:52:11.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.678865+0000 mon.smithi017 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.679207+0000 mon.smithi017 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.679414+0000 mon.smithi017 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.679629+0000 mon.smithi017 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.679859+0000 mon.smithi017 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.680073+0000 mon.smithi017 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.680336+0000 mon.smithi017 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:11.835 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:10.684060+0000 mon.smithi017 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: T03:52:10.684353+0000 mon.smithi017 (mon.0) 367 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.156191+0000 mon.smithi017 (mon.0) 368 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.156871+0000 mon.smithi017 (mon.0) 369 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.157501+0000 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: mon.smithi017 (mon.0) 370 : audit 2023-12-06T03:52:11.836 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:11 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:12.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:10.235511+0000 mgr.smithi017.mljnlu (mgr.14180) 93 : cephadm [INF] Deploying daemon osd.4 on smithi169 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.678496+0000 mon.smithi017 (mon.0) 357 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: cluster 2023-12-06T03:52:10.678562+0000 mon.smithi017 (mon.0) 358 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.678865+0000 mon.smithi017 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.679207+0000 mon.smithi017 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.679414+0000 mon.smithi017 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.679629+0000 mon.smithi017 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.679859+0000 mon.smithi017 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.680073+0000 mon.smithi017 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.680336+0000 mon.smithi017 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.684060+0000 mon.smithi017 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:10.684353+0000 mon.smithi017 (mon.0) 367 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.156191+0000 mon.smithi017 (mon.0) 368 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:12.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.156871+0000 mon.smithi017 (mon.0) 369 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-12-06T03:52:12.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:12.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:11 smithi169 conmon[87179]: T03:52:11.157501+0000 mon.smithi017 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:12.797 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cluster 2023-12-06T03:52:10.102084+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cluster 2023-12-06T03:52:10.102165+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:11.158026+0000 mgr.smithi017.mljnlu (mgr.14180) 94 : cephadm [INF] Deploying daemon osd.3 on smithi017 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cluster 2023-12-06T03:52:11.502657+0000 mgr.smithi017.mljnlu (mgr.14180) 95 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cluster 2023-12-06T03:52:11.683935+0000 mon.smithi017 (mon.0) 371 : cluster [INF] osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206] boot 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: cluster 2023-12-06T03:52:11.683978+0000 mon.smithi017 (mon.0) 372 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.684271+0000 mon.smithi017 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.684656+0000 mon.smithi017 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.684913+0000 mon.smithi017 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.688446+0000 mon.smithi017 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.688691+0000 mon.smithi017 (mon.0) 377 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.688916+0000 mon.smithi017 (mon.0) 378 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.689149+0000 mon.smithi017 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:12.798 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:12 smithi017 conmon[82019]: audit 2023-12-06T03:52:11.689369+0000 mon.smithi017 (mon.0) 380 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:13.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cluster 2023-12-06T03:52:10.102084+0000 osd.0 (osd 2023-12-06T03:52:13.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: .0) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cluster 2023-12-06T03:52:10.102165+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:11.158026+0000 mgr.smithi017.mljnlu (mgr.14180) 94 : cephadm [INF] Deploying daemon osd.3 on smithi017 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cluster 2023-12-06T03:52:11.502657+0000 mgr.smithi017.mljnlu (mgr.14180) 95 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cluster 2023-12-06T03:52:11.683935+0000 mon.smithi017 (mon.0) 371 : cluster [INF] osd.0 [v2:172.21.15.169:6800/1718635206,v1:172.21.15.169:6801/1718635206] boot 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: cluster 2023-12-06T03:52:11.683978+0000 mon.smithi017 (mon.0) 372 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.684271+0000 mon.smithi017 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.684656+0000 mon.smithi017 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.684913+0000 mon.smithi017 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.688446+0000 mon.smithi017 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.688691+0000 mon.smithi017 (mon.0) 377 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.688916+0000 mon.smithi017 (mon.0) 378 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.689149+0000 mon.smithi017 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:13.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:12 smithi169 conmon[87179]: audit 2023-12-06T03:52:11.689369+0000 mon.smithi017 (mon.0) 380 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: cluster 2023-12-06T03:52:13.158906+0000 mon.smithi017 (mon.0) 381 : cluster 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: [DBG] osdmap e17: 8 total, 1 up, 8 in 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:13.159002+0000 mon.smithi017 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:13.159223+0000 mon.smithi017 (mon.0) 383 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:13.159364+0000 mon.smithi017 (mon. 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 0) 384 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12-06T03:52:13.159521 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 385 : audit [DBG] 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: -12-06T03:52: 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 13.159679+0000 mon.smithi017 (mon. 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 0) 386 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12- 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 06T03:52:13. 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 159842+0000 mon.smithi017 (mon.0) 387 : 2023-12-06T03:52:14.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 06T03:52:13.159985 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 388 : 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12-06T03:52 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: :13.447791+0000 mon.smithi169 (mon.1 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: ) 12 : audit [INF] from='osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12-06T03: 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 52:13.448245+0000 mon.smithi017 (mon 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: .0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: 2023-12-06T03:52:14.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: cluster 2023-12-06 2023-12-06T03:52:14.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: T03:52:13.502888+0000 2023-12-06T03:52:14.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 96 : cluster 2023-12-06T03:52:14.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:14 smithi169 conmon[87179]: [DBG] pgmap v62: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-06T03:52:14.543 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:14.565 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: cluster 2023-12-06T03:52:13.158906+0000 mon.smithi017 (mon.0) 381 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159002+0000 mon.smithi017 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159223+0000 mon.smithi017 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159364+0000 mon.smithi017 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159521+0000 mon.smithi017 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159679+0000 mon.smithi017 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: 03:52:13.159842+0000 mon.smithi017 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.159985+0000 mon.smithi017 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.447791+0000 mon.smithi169 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: audit 2023-12-06T03:52:13.448245+0000 mon.smithi017 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-06T03:52:14.566 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:14 smithi017 conmon[82019]: cluster 2023-12-06T03:52:13.502888+0000 mgr.smithi017.mljnlu (mgr.14180) 96 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:14.165604+0000 mon.smithi017 ( 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.0) 390 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: cluster 2023-12-06T03:52:14.165690+0000 mon.smithi017 (mon.0) 391 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:14.165828+0000 mon.smithi017 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:14.166290+0000 mon.smithi169 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:14.166414+0000 mon.smithi017 (mon.0) 393 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 03:52:14.166759+0000 mon.smithi017 (mon. 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 0) 394 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 06T03:52:14.167040+0000 mon.smithi017 ( 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.0) 395 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 12-06T03:52:14.167366+0000 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.smithi017 (mon.0) 396 : audit [DBG] 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:14.167606+0000 mon.smithi017 (mon.0) 397 : audit [DBG] 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: -12-06T03:52:14.167824+0000 mon.smithi017 (mon 2023-12-06T03:52:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: .0) 398 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 06T03:52:14.168052+0000 mon.smithi017 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: -12-06T03:52:14.309955+0000 mon.smithi017 ( 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.0) 400 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: -06T03:52:14.541847+0000 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.smithi169 (mon.1) 14 : audit [DBG] 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: from='client.? 172.21.15.17:0/2319295065' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:14.791640+0000 mon.smithi017 2023-12-06T03:52:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: (mon.0) 401 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 12-06T03:52:14.792407+0000 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.smithi017 (mon.0) 402 : audit [INF] 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: audit 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:14.793116+0000 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mon.smithi017 (mon.0) 403 : audit [DBG] 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: 2023-12-06T03:52:14.793723+0000 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 97 : cephadm [INF] 2023-12-06T03:52:15.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:15 smithi017 conmon[82019]: Deploying daemon osd.6 on smithi169 2023-12-06T03:52:15.322 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1701834731,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.165604+0000 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: mon.smithi017 (mon.0) 390 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: cluster 2023-12-06T03:52:14.165690+0000 mon.smithi017 (mon.0) 391 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.165828+0000 mon.smithi017 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: -12-06T03:52:14.166290+0000 mon.smithi169 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.166414+0000 mon.smithi017 (mon 2023-12-06T03:52:15.429 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: .0) 393 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: -06T03:52:14.166759+0000 mon.smithi017 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: -12-06T03:52:14.167040+0000 mon.smithi017 (mon.0) 395 : audit 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 2023-12-06T03:52:14.167366+0000 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: mon.smithi017 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52: 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 14.167606+0000 mon.smithi017 (mon.0) 397 : audit [DBG] 2023-12-06T03:52:15.430 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.167824+0000 mon.smithi017 (mon.0 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: ) 398 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52: 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 14.168052+0000 mon.smithi017 (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.309955 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 400 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.541847+0000 mon.smithi169 ( 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: mon.1) 14 : audit [DBG] from='client.? 172.21.15.17:0/2319295065' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 2023-12-06T03:52:14.791640+0000 mon.smithi017 (mon.0) 401 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12-06T03:52:14.792407+0000 mon.smithi017 (mon.0) 402 : audit 2023-12-06T03:52:15.431 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-12-06T03:52:15.432 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:15.432 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 06T03:52:14.793116+0000 mon.smithi017 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:15.432 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: cephadm 2023-12-06T03:52: 2023-12-06T03:52:15.432 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: 14.793723+0000 mgr.smithi017.mljnlu (mgr.14180) 97 : cephadm 2023-12-06T03:52:15.432 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:15 smithi169 conmon[87179]: [INF] Deploying daemon osd.6 on smithi169 2023-12-06T03:52:16.323 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:16.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06T03:52:15.165376+0000 mon.smithi017 (mon.0) 404 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:16.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06T03:52:15.165447+0000 mon.smithi017 (mon.0) 405 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-12-06T03:52:16.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: cluster 2023-12-06T03 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: :52:15.165490+0000 mon.smithi017 (mon.0) 406 : 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: 52:15.165851+0000 mon.smithi017 (mon.0) 407 : 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06T03 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: :52:15.166215+0000 mon.smithi017 (mon.0) 408 : audit 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: T03:52:15.166451+0000 mon.smithi017 (mon.0 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: ) 409 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:52:16.427 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: 12-06T03:52:15.166751+0000 mon.smithi017 ( 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:15.166977+0000 mon.smithi017 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 411 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:15.167194+0000 mon.smithi017 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:15.167400+0000 mon.smithi017 ( 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:15.167603+0000 mon.smithi017 ( 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:15.172986+0000 mon.smithi017 2023-12-06T03:52:16.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: cluster 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: 2023-12-06T03:52:15.503359+0000 mgr.smithi017.mljnlu 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mgr.14180) 98 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.166594+0000 mon.smithi017 ( 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 416 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: cluster 2023 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.166677+0000 mon.smithi017 ( 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 417 : cluster [INF] osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788] boot 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: cluster 2023 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.166722+0000 mon.smithi017 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 418 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.166853+0000 mon.smithi017 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.429 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.167207+0000 mon.smithi017 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.167664+0000 mon.smithi017 ( 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.167871+0000 mon.smithi017 ( 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.168066+0000 mon.smithi017 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 423 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: -12-06T03:52:16.168258+0000 mon.smithi017 2023-12-06T03:52:16.430 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:16.431 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: audit 2023-12-06T03:52:16.431 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: 2023-12-06T03:52:16.168438+0000 2023-12-06T03:52:16.431 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: mon.smithi017 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:16.431 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:16 smithi017 conmon[82019]: 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.165376+0000 mon.smithi017 (mon.0) 404 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.165447+0000 mon.smithi017 (mon.0) 405 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: cluster 2023-12-06T03:52:15.165490+0000 mon.smithi017 (mon.0) 406 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.165851+0000 mon.smithi017 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.166215+0000 mon.smithi017 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.166451+0000 mon.smithi017 (mon.0) 409 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.166751+0000 mon.smithi017 (mon.0) 410 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.166977+0000 mon.smithi017 (mon.0) 411 : audit 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.167194+0000 mon.smithi017 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.167400+0000 mon.smithi017 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:16.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.167603+0000 mon.smithi017 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:15.172986+0000 mon.smithi017 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: cluster 2023-12-06T03:52:15.503359+0000 mgr.smithi017.mljnlu (mgr.14180) 98 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.166594+0000 mon.smithi017 (mon.0) 416 : audit [INF] from='osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: cluster 2023-12-06T03:52:16.166677+0000 mon.smithi017 (mon.0) 417 : cluster [INF] osd.2 [v2:172.21.15.169:6808/2598318788,v1:172.21.15.169:6809/2598318788] boot 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: cluster 2023-12-06T03:52:16.166722+0000 mon.smithi017 (mon.0) 418 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.166853+0000 mon.smithi017 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.167207+0000 mon.smithi017 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.167664+0000 mon.smithi017 (mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.167871+0000 mon.smithi017 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.168066+0000 mon.smithi017 (mon.0) 423 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.168258+0000 mon.smithi017 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:16.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:16 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.168438+0000 mon.smithi017 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:17.918 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: cluster 2023-12-06T03:52:14.400545+0000 osd.2 2023-12-06T03:52:17.918 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:17.918 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: cluster 2023-12-06T03:52:14.400635+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.170305+0000 mon.smithi017 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.528901+0000 mon.smithi017 (mon.0) 427 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.529616+0000 mon.smithi017 (mon.0) 428 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: audit 2023-12-06T03:52:16.530219+0000 mon.smithi017 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:16.530728+0000 mgr.smithi017.mljnlu (mgr.14180) 99 : cephadm [INF] Deploying daemon osd.5 on smithi017 2023-12-06T03:52:17.919 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:17 smithi169 conmon[87179]: audit 2023-12-06T03:52:17.170065+0000 mon.smithi017 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: cluster 2023-12-06T03:52: 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: 14.400545+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: cluster 2023-12-06T03:52:14.400635+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: audit 2023-12-06T03:52:16.170305+0000 mon.smithi017 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: audit 2023-12-06T03:52:16.528901+0000 mon.smithi017 (mon.0) 427 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: audit 2023-12-06T03:52:16.529616+0000 mon.smithi017 (mon.0) 428 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-12-06T03:52:18.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: audit 2023-12-06T03:52:16.530219+0000 mon.smithi017 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:18.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:16.530728+0000 mgr.smithi017.mljnlu (mgr.14180) 99 : cephadm [INF] Deploying daemon osd.5 on smithi017 2023-12-06T03:52:18.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:17 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.170065+0000 mon.smithi017 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:18.187 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:15.292849+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:15.292902+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:17.177135+0000 mon.smithi017 (mon.0) 431 : cluster [INF] osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751] boot 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:17.177161+0000 mon.smithi017 (mon.0) 432 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.177501+0000 mon.smithi017 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.177741+0000 mon.smithi017 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:18.766 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.177879+0000 mon.smithi017 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.178040+0000 mon.smithi017 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.178195+0000 mon.smithi017 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.178363+0000 mon.smithi017 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.178555+0000 mon.smithi017 (mon.0) 439 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:17.503758+0000 mgr.smithi017.mljnlu (mgr.14180) 100 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.919895+0000 mon.smithi169 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-06T03:52:18.767 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:17.920298+0000 mon.smithi017 (mon.0) 440 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:18.181705+0000 mon.smithi017 (mon.0) 441 : audit [INF] 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:18.181811+0000 mon.smithi017 (mon.0) 442 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: cluster 2023-12-06T03:52:18.181895+0000 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: mon.smithi017 (mon.0) 443 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: T03:52:18.182025+0000 mon.smithi017 ( 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:18 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: .182352+0000 mon.smithi017 (mon.0) 445 : audit 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: T03:52:18.182459+0000 mon.smithi169 ( 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:18.768 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: -12-06T03:52:18.182554 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 446 : audit 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: :18.182845+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 447 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 12-06T03:52:18.183108+0000 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: mon.smithi017 (mon.0) 448 : audit [INF] 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 2023-12-06T03:52:18. 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 183370+0000 mon.smithi017 (mon.0) 449 : audit 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:52:18.769 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 06T03:52:18.184956+0000 mon.smithi017 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: (mon.0) 450 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: audit 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 2023-12-06T03:52:18. 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: 185866+0000 mon.smithi017 (mon.0) 451 : audit 2023-12-06T03:52:18.770 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:18 smithi017 conmon[82019]: [DBG] from='client.? 172.21.15.17:0/2113069028' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:18.820 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":22,"num_osds":8,"num_up_osds":3,"osd_up_since":1701834737,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:19.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023-12-06T03:52:15.292849+0000 osd.1 (osd.1) 1 2023-12-06T03:52:19.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023-12-06T03:52:15.292902+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023-12- 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 06T03:52:17.177135+0000 mon.smithi017 (mon.0) 431 : cluster [INF] osd.1 [v2:172.21.15.17:6802/1823517751,v1:172.21.15.17:6803/1823517751] boot 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023-12-06T03:52: 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 17.177161+0000 mon.smithi017 (mon.0) 432 : cluster 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: [DBG] osdmap e21: 8 total, 3 up, 8 in 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 52:17.177501+0000 mon.smithi017 (mon.0) 433 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 06T03:52:17.177741+0000 mon.smithi017 (mon. 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 0) 434 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 06T03:52:17.177879+0000 mon.smithi017 (mon.0 2023-12-06T03:52:19.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: ) 435 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 06T03:52:17.178040+0000 mon.smithi017 (mon 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: .0) 436 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -12-06T03:52:17.178195+0000 mon.smithi017 (mon.0 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: ) 437 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 52:17.178363+0000 mon.smithi017 (mon.0) 438 : audit [DBG] 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06T03:52:17.178555 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 439 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023- 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 12-06T03:52:17.503758+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: .14180) 100 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:19.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -06T03:52:17.919895+0000 mon.smithi169 (mon. 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 1) 15 : audit [INF] from='osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 12-06T03:52:17.920298+0000 mon.smithi017 ( 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: mon.0) 440 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: T03:52:18.181705+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 441 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -12-06T03:52:18.181811+0000 mon.smithi017 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: (mon.0) 442 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: cluster 2023 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -12-06T03:52:18.181895+0000 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: mon.smithi017 (mon.0) 443 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 12-06T03:52:18.182025+0000 mon.smithi017 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: (mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:19.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 2023-12-06T03:52:18.182352+0000 mon.smithi017 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 2023-12-06T03:52:18.182459+0000 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: mon.smithi169 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -12-06T03:52:18.182554+0000 mon.smithi017 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: (mon.0) 446 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 12-06T03:52:18.182845+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 447 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: T03:52:18.183108+0000 mon.smithi017 (mon. 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: 0) 448 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:19.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -06T03:52:18.183370+0000 mon.smithi017 ( 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -06T03:52:18.184956+0000 mon.smithi017 ( 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: mon.0) 450 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: -12-06T03:52:18.185866+0000 mon.smithi017 (mon 2023-12-06T03:52:19.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:18 smithi169 conmon[87179]: .0) 451 : audit [DBG] from='client.? 172.21.15.17:0/2113069028' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:19.822 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:20.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 03:52:19.184130+0000 mon.smithi017 (mon.0) 452 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.184310+0000 mon.smithi017 (mon.0) 453 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: cluster 2023-12-06T03:52:19.184380+0000 mon.smithi017 (mon.0) 454 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.184509+0000 mon.smithi017 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.184793+0000 mon.smithi017 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.184956+0000 mon.smithi017 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.185121+0000 mon.smithi017 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19. 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 185334+0000 mon.smithi017 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:19.189079+0000 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: mon.smithi017 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 2023-12 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: -06T03:52:19.250647 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 461 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: cluster 2023-12 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: -06T03:52:19.504315+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 14180) 101 : cluster [DBG] pgmap v71: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: 2023-12-06T03:52:19.645074+0000 2023-12-06T03:52:20.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:20 smithi017 conmon[82019]: mon.smithi017 (mon.0) 462 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-12-06T03:52:20.375 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.184130+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: 452 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.184310+0000 mon.smithi017 (mon.0) 453 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: cluster 2023-12-06T03:52:19.184380+0000 mon.smithi017 (mon.0) 454 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.184509+0000 mon.smithi017 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.184793+0000 mon.smithi017 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.184956+0000 mon.smithi017 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.185121+0000 mon.smithi017 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.185334+0000 mon.smithi017 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.189079+0000 mon.smithi017 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.250647+0000 mon.smithi017 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: cluster 2023-12-06T03:52:19.504315+0000 mgr.smithi017.mljnlu (mgr.14180) 101 : cluster [DBG] pgmap v71: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-12-06T03:52:20.376 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:20 smithi169 conmon[87179]: audit 2023-12-06T03:52:19.645074+0000 mon.smithi017 (mon.0) 462 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-12-06T03:52:21.449 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: cluster 2023-12-06T03:52:18.967492+0000 osd.4 (osd.4) 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: cluster 2023-12-06T03:52:18.967540+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: cluster 2023-12-06T03:52:20.185999+0000 mon.smithi017 (mon.0) 463 : cluster [INF] osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075] boot 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12-06T03:52:20.186114+0000 mon.smithi017 (mon.0) 464 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: cluster 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 2023-12-06T03:52:20.186216+0000 mon.smithi017 (mon.0) 465 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: :52:20.186660+0000 mon.smithi017 ( 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: T03:52:20.187040+0000 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: mon.smithi017 (mon.0) 467 : audit 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:21.450 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 2023-12-06T03:52: 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 20.187385+0000 mon.smithi017 (mon. 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 0) 468 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -12-06T03:52:20.192763+0000 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: mon.smithi017 (mon.0) 469 : audit 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 2023-12- 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 06T03:52:20.192999+0000 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: mon.smithi017 (mon.0) 470 : audit 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -06T03:52:20.193230+0000 2023-12-06T03:52:21.451 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: mon.smithi017 (mon.0) 471 : audit 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -12-06T03:52:21. 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 186058+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 472 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: cluster 2023 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -12-06T03:52:21 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: .186165+0000 mon.smithi017 (mon.0 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: ) 473 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -12-06T03:52:21. 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 186376+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 474 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: -12-06T03:52:21. 2023-12-06T03:52:21.452 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 186700+0000 mon.smithi017 (mon.0) 475 2023-12-06T03:52:21.453 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:21.453 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:21.453 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: 12-06T03:52:21.187385+0000 mon.smithi017 (mon 2023-12-06T03:52:21.453 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:21 smithi169 conmon[87179]: .0) 476 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: cluster 2023-12-06T03:52:18.967492+0000 osd.4 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: cluster 2023-12-06T03:52:18.967540+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: cluster 2023-12-06T03:52:20.185999+0000 mon.smithi017 (mon.0) 463 : cluster [INF] osd.4 [v2:172.21.15.169:6816/1044595075,v1:172.21.15.169:6817/1044595075] boot 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.186114+0000 mon.smithi017 (mon.0) 464 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: cluster 2023-12-06T03:52:20.186216+0000 mon.smithi017 (mon.0) 465 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2023-12-06T03:52:21.494 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.186660+0000 mon.smithi017 (mon.0) 466 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.187040+0000 mon.smithi017 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.187385+0000 mon.smithi017 (mon.0) 468 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.192763+0000 mon.smithi017 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.192999+0000 mon.smithi017 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:20.193230+0000 mon.smithi017 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.186058+0000 mon.smithi017 (mon.0) 472 : audit [INF] from='osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: cluster 2023-12-06T03:52:21.186165+0000 mon.smithi017 (mon.0) 473 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.186376+0000 mon.smithi017 (mon.0) 474 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.186700+0000 mon.smithi017 (mon.0 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: ) 475 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:21.495 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:21 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.187385+0000 mon.smithi017 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:22.263 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:22 smithi169 conmon[87179]: audit 2023-12-06T03:52:21.187592+0000 mon.smithi017 (mon.0 2023-12-06T03:52:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:22 smithi169 conmon[87179]: ) 477 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:22 smithi169 conmon[87179]: audit 2023-12-06T03:52:21.192445+0000 mon.smithi017 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:22 smithi169 conmon[87179]: cluster 2023-12-06T03:52:21.504656+0000 mgr.smithi017.mljnlu (mgr.14180) 102 : cluster [DBG] pgmap v74: 1 pgs: 1 creating+activating; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-06T03:52:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:22 smithi169 conmon[87179]: audit 2023-12-06T03:52:21.831512+0000 mon.smithi017 (mon.0) 479 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:22.511 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:22 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.187592 2023-12-06T03:52:22.511 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:22 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:22.511 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:22 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.192445+0000 mon.smithi017 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:22.511 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:22 smithi017 conmon[82019]: cluster 2023-12-06T03:52:21.504656+0000 mgr.smithi017.mljnlu (mgr.14180) 102 : cluster [DBG] pgmap v74: 1 pgs: 1 creating+activating; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-06T03:52:22.511 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:22 smithi017 conmon[82019]: audit 2023-12-06T03:52:21.831512+0000 mon.smithi017 (mon.0) 479 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:23.063 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":26,"num_osds":8,"num_up_osds":5,"osd_up_since":1701834742,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":1} 2023-12-06T03:52:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cluster 2023-12-06T03:52:20.654256+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cluster 2023-12-06T03:52:20.654303+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cluster 2023-12-06T03:52:22.188352+0000 mon.smithi017 (mon.0) 480 : cluster [INF] osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642] boot 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cluster 2023-12-06T03:52:22.188395+0000 mon.smithi017 (mon.0) 481 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.188555+0000 mon.smithi017 (mon.0) 482 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.189230+0000 mon.smithi017 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: 52:22.189530+0000 mon.smithi017 (mon.0) 484 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.189678+0000 mon.smithi017 (mon.0) 485 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.261143+0000 mon.smithi017 (mon.0) 486 : audit [DBG] from='client.? 172.21.15.17:0/3995984634' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.332535+0000 mon.smithi169 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.332875+0000 mon.smithi017 (mon.0) 487 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.853969+0000 mon.smithi017 (mon.0) 488 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.854730+0000 mon.smithi017 (mon.0) 489 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:22.855325 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:22.855831+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:52:23.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: ) 103 : cephadm [INF] Deploying daemon osd.7 on smithi017 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:23 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: .188781+0000 mon.smithi017 (mon.0) 491 : audit 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: cluster 2023-12-06T03:52:23 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: .188844+0000 mon.smithi017 (mon.0) 492 : cluster 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: [DBG] osdmap e27: 8 total, 5 up, 8 in 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52: 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: 23.188964+0000 mon.smithi017 (mon.0) 493 : audit 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52:23. 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: 189304+0000 mon.smithi017 (mon.0) 494 : audit [DBG] 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52: 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: 23.189608+0000 mon.smithi017 (mon.0) 495 : audit 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:23.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03:52 2023-12-06T03:52:23.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: :23.194768+0000 mon.smithi169 (mon.1) 18 : 2023-12-06T03:52:23.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit [INF] from='osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:23.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: audit 2023-12-06T03 2023-12-06T03:52:23.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: :52:23.195190+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:23.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:23 smithi017 conmon[82019]: 496 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster 2023-12-06T03:52:20.654256+0000 osd.3 (osd.3) 1 : 2023-12-06T03:52:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster 2023-12-06T03:52:20.654303+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster 2023-12-06T03:52:22.188352+0000 mon.smithi017 (mon 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: .0) 480 : cluster [INF] osd.3 [v2:172.21.15.17:6810/510528642,v1:172.21.15.17:6811/510528642] boot 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster 2023- 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 12-06T03:52:22.188395+0000 mon.smithi017 (mon.0) 481 : cluster [DBG] 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: osdmap e26: 8 total, 5 up, 8 in 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:22 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: .188555+0000 mon.smithi017 (mon.0) 482 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :52:22.189230+0000 mon.smithi017 (mon.0) 483 : audit [DBG] 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:22 2023-12-06T03:52:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: .189530+0000 mon.smithi017 (mon.0) 484 : audit [DBG] 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03: 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 52:22.189678+0000 mon.smithi017 (mon 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: .0) 485 : audit [DBG] 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :22.261143+0000 mon.smithi017 (mon.0 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: ) 486 : audit [DBG] from='client.? 172.21.15.17:0/3995984634' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 12-06T03:52:22.332535+0000 mon.smithi169 (mon. 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 1) 17 : audit [INF] from='osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: -06T03:52:22.332875+0000 mon.smithi017 ( 2023-12-06T03:52:23.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: mon.0) 487 : audit [INF] 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :22.853969+0000 mon.smithi017 (mon. 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 0) 488 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :22.854730+0000 mon.smithi017 (mon. 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 0) 489 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :22.855325+0000 mon.smithi017 (mon. 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 0) 490 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:23.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:23.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:22.855831+0000 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 103 : 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cephadm [INF] Deploying daemon osd.7 on smithi017 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 12-06T03:52:23.188781+0000 mon.smithi017 ( 2023-12-06T03:52:23.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: mon.0) 491 : audit [INF] 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: cluster 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:23.188844+0000 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: mon.smithi017 (mon.0) 492 : cluster [DBG] 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: osdmap e27: 8 total, 5 up, 8 in 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: T03:52:23.188964+0000 mon.smithi017 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: (mon.0) 493 : audit [DBG] 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: :52:23.189304+0000 mon.smithi017 (mon. 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 0) 494 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:23.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: -06T03:52:23.189608+0000 mon.smithi017 (mon 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: .0) 495 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 2023-12-06T03:52: 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 23.194768+0000 mon.smithi169 (mon.1) 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 18 : audit [INF] from='osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: -06T03:52:23.195190+0000 mon.smithi017 (mon. 2023-12-06T03:52:23.507 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:23 smithi169 conmon[87179]: 0) 496 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]: dispatch 2023-12-06T03:52:24.064 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:24.669 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: cluster 2023-12-06T03:52:23.504927+0000 mgr.smithi017.mljnlu (mgr.14180) 104 : cluster [DBG] pgmap v77: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: audit 2023-12-06T03:52:24.190240+0000 mon.smithi017 (mon.0) 497 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: cluster 2023-12-06T03:52:24.190310+0000 mon.smithi017 (mon.0) 498 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: audit 2023-12-06T03:52:24.190476+0000 mon.smithi017 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: audit 2023-12-06T03:52:24.190920+0000 mon.smithi017 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: 03:52:24.191203+0000 mon.smithi017 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:24.670 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:24 smithi017 conmon[82019]: audit 2023-12-06T03:52:24.193409+0000 mon.smithi017 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: cluster 2023-12-06T03:52:23.504927+0000 mgr.smithi017.mljnlu (mgr.14180) 104 : cluster 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: [DBG] pgmap v77: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: audit 2023-12-06T03:52:24.190240+0000 mon.smithi017 (mon.0) 497 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi169", "root=default"]}]': finished 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: cluster 2023-12 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: -06T03:52:24.190310+0000 mon.smithi017 (mon.0) 498 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: audit 2023-12-06T03:52:24. 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: 190476+0000 mon.smithi017 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:25.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: -12-06T03:52:24.190920+0000 mon.smithi017 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:25.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: audit 2023-12-06T03:52:24.191203 2023-12-06T03:52:25.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:25.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: audit 2023-12-06T03:52:24.193409+0000 2023-12-06T03:52:25.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:24 smithi169 conmon[87179]: mon.smithi017 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: cluster 2023-12-06T03:52:23.341235+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: cluster 2023-12-06T03:52:23.341291+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: audit 2023-12-06T03:52:25.193716+0000 mon.smithi017 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: cluster 2023-12-06T03:52:25.202501+0000 mon.smithi017 (mon.0) 504 : cluster [INF] osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469] boot 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: cluster 2023-12-06T03:52:25. 2023-12-06T03:52:25.738 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: 202553+0000 mon.smithi017 (mon.0) 505 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2023-12-06T03:52:25.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: audit 2023-12-06T03:52:25.202677+0000 mon.smithi017 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:25.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: audit 2023-12-06T03:52:25.202920+0000 mon.smithi017 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:25.739 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:25 smithi017 conmon[82019]: audit 2023-12-06T03:52:25.203162+0000 mon.smithi017 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: cluster 2023-12-06T03:52:23.341235+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: cluster 2023-12-06T03:52:23.341291+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: audit 2023-12-06T03:52:25.193716+0000 mon.smithi017 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: cluster 2023-12-06T03:52:25.202501+0000 mon.smithi017 (mon.0) 504 : cluster [INF] osd.6 [v2:172.21.15.169:6824/4056126469,v1:172.21.15.169:6825/4056126469] boot 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: cluster 2023-12-06T03:52:25.202553+0000 mon.smithi017 2023-12-06T03:52:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: (mon.0) 505 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: audit 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: 2023-12-06T03:52:25.202677+0000 mon.smithi017 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: audit 2023-12-06T03:52:25.202920 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: audit 2023-12-06T03:52:25.203162+0000 mon.smithi017 (mon 2023-12-06T03:52:26.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:25 smithi169 conmon[87179]: .0) 508 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:26.478 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: cluster 2023-12-06T03:52:25.505406+0000 mgr.smithi017.mljnlu (mgr.14180) 105 : cluster [DBG] pgmap v80: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:25.759408+0000 mon.smithi017 (mon.0) 509 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:26.205997+0000 mon.smithi017 (mon.0) 510 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: cluster 2023-12-06T03:52:26.206072+0000 mon.smithi017 (mon.0) 511 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:26.206228+0000 mon.smithi017 (mon.0) 512 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:26.744 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:26.206558+0000 mon.smithi017 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:26.745 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:26.206745+0000 mon.smithi017 (mon.0) 514 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:26.745 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:26 smithi017 conmon[82019]: audit 2023-12-06T03:52:26.476716+0000 mon.smithi017 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.17:0/1494858101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: cluster 2023-12-06T03:52:25.505406+0000 mgr.smithi017.mljnlu (mgr.14180) 105 : cluster [DBG] pgmap v80: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023-12-06T03:52:25.759408+0000 mon.smithi017 (mon.0) 509 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023-12-06T03:52:26.205997+0000 mon.smithi017 (mon.0) 510 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: cluster 2023-12- 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: 06T03:52:26.206072+0000 mon.smithi017 (mon.0) 511 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2023-12-06T03:52:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023-12-06T03:52:26 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: .206228+0000 mon.smithi017 (mon.0) 512 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: -12-06T03:52:26.206558+0000 mon.smithi017 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023-12-06T03:52:26.206745 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 514 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: audit 2023-12-06T03:52:26.476716+0000 mon.smithi017 (mon. 2023-12-06T03:52:27.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:26 smithi169 conmon[87179]: 0) 515 : audit [DBG] from='client.? 172.21.15.17:0/1494858101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:27.043 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":30,"num_osds":8,"num_up_osds":6,"osd_up_since":1701834745,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:28.044 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: audit 2023-12-06T03:52:27.207592+0000 mon.smithi017 (mon.0) 516 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: cluster 2023-12-06T03:52:27. 2023-12-06T03:52:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: 207671+0000 mon.smithi017 (mon.0) 517 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2023-12-06T03:52:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: audit 2023-12-06T03:52:27.207802+0000 mon.smithi017 (mon.0) 518 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: audit 2023-12-06T03:52:27.208133+0000 mon.smithi017 (mon.0) 519 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:28.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: audit 2023-12-06T03:52:27.211122+0000 mon.smithi017 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:28.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:28 smithi169 conmon[87179]: cluster 2023-12-06T03:52:27.505922+0000 mgr.smithi017.mljnlu (mgr.14180) 106 : cluster [DBG] pgmap v83: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: audit 2023-12-06T03:52:27.207592+0000 mon.smithi017 ( 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: mon.0) 516 : audit [INF] from='osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: cluster 2023-12-06T03:52:27.207671+0000 mon.smithi017 (mon.0) 517 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: audit 2023-12-06T03:52:27.207802+0000 mon.smithi017 (mon. 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: 0) 518 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: -12-06T03:52:27.208133 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 519 : audit [DBG] 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: audit 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: 2023-12-06T03:52:27.211122+0000 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: mon.smithi017 (mon.0) 520 : audit [DBG] 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:28.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: cluster 2023-12-06T03:52:28.571 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: 2023-12-06T03:52:27.505922+0000 2023-12-06T03:52:28.571 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 106 : cluster [DBG] 2023-12-06T03:52:28.571 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:28 smithi017 conmon[82019]: pgmap v83: 1 pgs: 1 creating+remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-06T03:52:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: cluster 2023-12-06T03:52:26.715841+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: cluster 2023-12-06T03:52:26.715914+0000 osd.5 (osd.5) 2 : 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: cluster 2023-12-06T03:52:28.208594+0000 mon.smithi017 (mon.0) 521 : cluster [INF] osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489] boot 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: cluster 2023-12-06T03:52:28.208621+0000 mon.smithi017 (mon.0) 522 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: audit 2023-12-06T03:52:28.209040+0000 mon.smithi017 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: audit 2023-12-06T03:52:28.209252+0000 mon.smithi017 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: audit 2023-12-06T03:52:28.338991+0000 mon.smithi017 (mon.0 2023-12-06T03:52:29.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:29 smithi017 conmon[82019]: ) 525 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: cluster 2023-12-06T03:52:26.715841+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: cluster 2023-12-06T03:52:26 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: .715914+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: cluster 2023-12-06T03:52:28.208594+0000 mon.smithi017 (mon.0) 521 : cluster [INF] osd.5 [v2:172.21.15.17:6818/3443812489,v1:172.21.15.17:6819/3443812489] boot 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: cluster 2023-12-06T03:52:28.208621+0000 mon.smithi017 (mon.0) 522 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2023-12-06T03:52:29.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: audit 2023-12-06T03:52:28.209040+0000 mon.smithi017 (mon.0) 523 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-06T03:52:29.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: audit 2023-12-06T03:52:28.209252+0000 mon.smithi017 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:29.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: audit 2023-12-06T03:52: 2023-12-06T03:52:29.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:29 smithi169 conmon[87179]: 28.338991+0000 mon.smithi017 (mon.0) 525 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:29.880 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:30.406 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":33,"num_osds":8,"num_up_osds":7,"osd_up_since":1701834748,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:30.633 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:30 smithi017 conmon[82019]: cluster 2023-12-06T03:52:29.506260+0000 mgr.smithi017.mljnlu (mgr.14180) 107 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:30.633 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:30 smithi017 conmon[82019]: cluster 2023-12-06T03:52:29.548058+0000 mon.smithi017 (mon.0) 526 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2023-12-06T03:52:30.634 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:30 smithi017 conmon[82019]: audit 2023-12-06T03:52:29.548240+0000 mon.smithi017 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:30.634 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:30 smithi017 conmon[82019]: audit 2023-12-06T03:52:29.879232+0000 mon.smithi017 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.17:0/3989063591' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:30 smithi169 conmon[87179]: cluster 2023-12-06T03:52:29.506260+0000 mgr.smithi017.mljnlu (mgr.14180) 107 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:30 smithi169 conmon[87179]: cluster 2023-12-06T03:52:29. 2023-12-06T03:52:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:30 smithi169 conmon[87179]: 548058+0000 mon.smithi017 (mon.0) 526 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2023-12-06T03:52:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:30 smithi169 conmon[87179]: audit 2023-12-06T03:52:29.548240+0000 mon.smithi017 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:31.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:30 smithi169 conmon[87179]: audit 2023-12-06T03:52:29.879232+0000 mon.smithi017 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.17:0/3989063591' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:31.407 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:31.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:31 smithi017 conmon[82019]: audit 2023-12-06T03:52:31. 2023-12-06T03:52:31.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:31 smithi017 conmon[82019]: 476760+0000 mon.smithi017 (mon.0) 529 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-12-06T03:52:32.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:31 smithi169 conmon[87179]: audit 2023-12-06T03:52:31.476760+0000 mon.smithi017 (mon.0) 529 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: cluster 2023-12-06T03:52:31.506551+0000 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 108 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: audit 2023 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: -12-06T03:52:31.555601+0000 mon.smithi017 (mon.0) 530 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: 2023-12-06T03:52:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: cluster 2023-12- 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: 06T03:52:31.555685+0000 mon.smithi017 (mon 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: .0) 531 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: audit 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: 2023-12-06T03:52 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: :31.555859+0000 mon.smithi017 (mon.0) 532 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: audit 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: 2023-12-06T03:52:31 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: .556356+0000 mon.smithi017 (mon.0) 533 : 2023-12-06T03:52:32.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:32 smithi017 conmon[82019]: audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: cluster 2023-12-06T03:52:31.506551+0000 mgr.smithi017.mljnlu (mgr.14180) 108 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: audit 2023-12-06T03:52:31.555601+0000 mon.smithi017 (mon.0) 530 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: cluster 2023-12-06T03:52:31.555685+0000 mon.smithi017 (mon.0) 531 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: audit 2023-12-06T03:52:31.555859+0000 mon.smithi017 (mon 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: .0) 532 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: audit 2023-12-06T03:52:31. 2023-12-06T03:52:33.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: 556356+0000 mon.smithi017 (mon.0) 533 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]: dispatch 2023-12-06T03:52:33.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:32 smithi169 conmon[87179]: 2023-12-06T03:52:33.519 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:32.555937+0000 mon.smithi017 ( 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: mon.0) 534 : audit [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: cluster 2023-12-06T03:52:32.555989+0000 mon.smithi017 (mon.0) 535 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:32.556310+0000 mon.smithi017 (mon.0) 536 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:32.559178+0000 mon.smithi017 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:33.016957+0000 mon.smithi017 (mon.0) 538 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:33.018847+0000 mon.smithi017 (mon.0) 539 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:33.518853+0000 mon.smithi017 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.17:0/1293225072' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: cluster 2023-12-06T03:52:33.547281+0000 mon.smithi017 (mon.0) 541 : cluster [INF] osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911] boot 2023-12-06T03:52:33.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: cluster 2023-12-06T03:52:33.547331+0000 mon.smithi017 (mon.0) 542 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2023-12-06T03:52:33.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:33 smithi017 conmon[82019]: audit 2023-12-06T03:52:33.547616+0000 mon.smithi017 (mon.0) 543 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:33.979 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":35,"num_osds":8,"num_up_osds":7,"osd_up_since":1701834748,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:32.555937+0000 mon.smithi017 (mon.0) 534 : audit 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: [INF] from='osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi017", "root=default"]}]': finished 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: cluster 2023-12-06T03:52:32.555989+0000 mon.smithi017 (mon.0) 535 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:32.556310+0000 mon.smithi017 (mon.0) 536 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:32.559178+0000 mon.smithi017 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:34.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:33.016957+0000 mon.smithi017 (mon.0) 538 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:33.018847+0000 mon.smithi017 (mon.0) 539 : audit 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52:33.518853+0000 mon.smithi017 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.17:0/1293225072' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: cluster 2023-12-06T03:52: 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: 33.547281+0000 mon.smithi017 (mon.0) 541 : cluster [INF] osd.7 [v2:172.21.15.17:6826/4213891911,v1:172.21.15.17:6827/4213891911] boot 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: cluster 2023-12 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: -06T03:52:33.547331+0000 mon.smithi017 (mon.0) 542 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: audit 2023-12-06T03:52 2023-12-06T03:52:34.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:33 smithi169 conmon[87179]: :33.547616+0000 mon.smithi017 (mon.0) 543 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-06T03:52:34.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:34 smithi017 conmon[82019]: cluster 2023-12-06T03:52:32.459460+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:34.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:34 smithi017 conmon[82019]: cluster 2023-12-06T03:52:32.459510+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:34.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:34 smithi017 conmon[82019]: cluster 2023-12-06T03:52:33.506837+0000 mgr.smithi017.mljnlu (mgr.14180) 109 : cluster [DBG] pgmap v90: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:34.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:34 smithi017 conmon[82019]: cluster 2023-12-06T03:52:34.548689+0000 mon.smithi017 (mon.0) 544 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2023-12-06T03:52:34.981 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-12-06T03:52:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:34 smithi169 conmon[87179]: cluster 2023-12-06T03:52:32.459460+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-06T03:52:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:34 smithi169 conmon[87179]: cluster 2023-12-06T03:52:32.459510+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-06T03:52:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:34 smithi169 conmon[87179]: cluster 2023-12-06T03:52:33.506837+0000 mgr.smithi017.mljnlu (mgr.14180) 109 : cluster [DBG] pgmap v90: 1 pgs: 1 peering; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-06T03:52:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:34 smithi169 conmon[87179]: cluster 2023-12-06T03:52:34.548689+0000 mon.smithi017 (mon.0) 544 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2023-12-06T03:52:36.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:36 smithi017 conmon[82019]: cluster 2023-12-06T03:52:35.507319+0000 2023-12-06T03:52:36.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:36 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 110 : cluster [DBG] pgmap v93: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:36.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:36 smithi017 conmon[82019]: cluster 2023-12-06T03:52:35.549918+0000 mon.smithi017 (mon.0) 545 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2023-12-06T03:52:36.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:36 smithi017 conmon[82019]: audit 2023-12-06T03:52:35.826903+0000 mon.smithi017 (mon.0) 546 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:36.923 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:36 smithi169 conmon[87179]: cluster 2023-12-06T03:52:35.507319+0000 mgr.smithi017.mljnlu (mgr.14180) 110 : cluster 2023-12-06T03:52:36.923 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:36 smithi169 conmon[87179]: [DBG] pgmap v93: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:36.923 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:36 smithi169 conmon[87179]: cluster 2023-12-06T03:52:35.549918+0000 mon.smithi017 (mon.0) 545 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2023-12-06T03:52:36.923 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:36 smithi169 conmon[87179]: audit 2023-12-06T03:52:35.826903+0000 mon.smithi017 (mon.0) 546 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:37.189 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:37.726 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":38,"num_osds":8,"num_up_osds":8,"osd_up_since":1701834753,"num_in_osds":8,"osd_in_since":1701834717,"num_remapped_pgs":0} 2023-12-06T03:52:37.727 INFO:tasks.cephadm:Setting up client nodes... 2023-12-06T03:52:37.727 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-12-06T03:52:37.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:37 smithi169 conmon[87179]: audit 2023-12-06T03:52:37.189182+0000 mon.smithi017 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.17:0/3680011779' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:37.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:37 smithi017 conmon[82019]: audit 2023-12-06T03:52:37.189182+0000 mon.smithi017 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.17:0/3680011779' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-06T03:52:38.706 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:38 smithi017 conmon[82019]: cluster 2023-12-06T03:52:37.507596+0000 2023-12-06T03:52:38.706 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:38 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 111 : cluster [DBG] pgmap v95: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:38.744 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:38 smithi169 conmon[87179]: cluster 2023-12-06T03:52:37.507596+0000 mgr.smithi017.mljnlu (mgr.14180) 111 : cluster [DBG] pgmap v95: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:39.837 INFO:teuthology.orchestra.run.smithi017.stdout:[client.0] 2023-12-06T03:52:39.837 INFO:teuthology.orchestra.run.smithi017.stdout: key = AQAH8G9li9ahMRAAluNszReZnmovhH5wk/hStg== 2023-12-06T03:52:40.269 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T03:52:40.269 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2023-12-06T03:52:40.269 DEBUG:teuthology.orchestra.run.smithi017:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2023-12-06T03:52:40.312 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:39.128137+0000 mgr.smithi017.mljnlu (mgr.14180) 112 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: : cephadm [INF] Detected new or changed devices on smithi169 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03:52:39.133651+0000 mon.smithi017 (mon.0) 548 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: cluster 2023-12-06T03:52:39.507890+0000 mgr.smithi017.mljnlu (mgr.14180) 113 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03:52:39.529872+0000 mon.smithi017 (mon.0) 549 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03:52:39.530627+0000 mon.smithi017 (mon.0) 550 : audit [INF] 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03:52:39.531357+0000 mon.smithi017 (mon.0) 551 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: T03:52:39.531927+0000 mon.smithi017 (mon.0) 552 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:39.532398+0000 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 114 : cephadm [INF] Adjusting osd_memory_target on smithi169 to 4004M 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 2023-12-06T03:52:39.536259+0000 mon.smithi017 (mon.0 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: ) 553 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 03:52:39.799910+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 554 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:52:40.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 52:39.832432+0000 mon.smithi017 (mon.0) 555 : 2023-12-06T03:52:40.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit [INF] from='client.? 172.21.15.17:0/690496219' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:40.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:52:40.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 52:39.836099+0000 mon.smithi017 (mon.0) 556 : audit [INF] from='client.? 172.21.15.17:0/690496219' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-06T03:52:40.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:40 smithi169 conmon[87179]: 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:39.128137+0000 mgr.smithi017.mljnlu (mgr.14180) 112 : cephadm [INF] Detected new or changed devices on smithi169 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.133651+0000 mon.smithi017 (mon.0) 548 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: cluster 2023-12-06T03:52:39.507890+0000 mgr.smithi017.mljnlu (mgr.14180) 113 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.529872+0000 mon.smithi017 (mon.0) 549 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.530627+0000 mon.smithi017 (mon.0) 550 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.531357+0000 mon.smithi017 (mon.0) 551 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.531927+0000 mon.smithi017 (mon.0) 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: 552 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:39.532398+0000 mgr.smithi017.mljnlu (mgr.14180) 114 : cephadm [INF] Adjusting osd_memory_target on smithi169 to 4004M 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.536259+0000 mon.smithi017 (mon.0) 553 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.799910+0000 mon.smithi017 (mon.0) 554 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.832432+0000 mon.smithi017 (mon.0) 555 : audit [INF] from='client.? 172.21.15.17:0/690496219' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:40.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:40 smithi017 conmon[82019]: audit 2023-12-06T03:52:39.836099+0000 mon.smithi017 (mon.0) 556 : audit [INF] from='client.? 172.21.15.17:0/690496219' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-06T03:52:42.053 INFO:teuthology.orchestra.run.smithi169.stdout:[client.1] 2023-12-06T03:52:42.054 INFO:teuthology.orchestra.run.smithi169.stdout: key = AQAK8G9ldLv1AhAAR9bO0MoMl9l67qH3jd9GHg== 2023-12-06T03:52:42.453 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T03:52:42.453 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2023-12-06T03:52:42.453 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2023-12-06T03:52:42.492 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-12-06T03:52:42.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:42 smithi169 conmon[87179]: cluster 2023-12-06T03:52:41.508223+0000 mgr.smithi017.mljnlu (mgr.14180) 115 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:42.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:42 smithi169 conmon[87179]: audit 2023-12-06T03:52:42.049089+0000 mon.smithi169 (mon.1) 19 : audit [INF] from='client.? 172.21.15.169:0/2765026770' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:42.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:42 smithi169 conmon[87179]: audit 2023-12-06T03:52:42.049507+0000 mon.smithi017 (mon.0) 557 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:42.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:42 smithi169 conmon[87179]: audit 2023-12-06T03:52:42.052619+0000 mon.smithi017 (mon.0) 558 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-06T03:52:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:42 smithi017 conmon[82019]: cluster 2023-12-06T03:52:41.508223+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:52:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:42 smithi017 conmon[82019]: ) 115 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:42 smithi017 conmon[82019]: audit 2023-12-06T03:52:42.049089+0000 mon.smithi169 (mon.1) 19 : audit [INF] from='client.? 172.21.15.169:0/2765026770' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:42 smithi017 conmon[82019]: audit 2023-12-06T03:52:42.049507+0000 mon.smithi017 (mon.0) 557 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-06T03:52:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:42 smithi017 conmon[82019]: audit 2023-12-06T03:52:42.052619+0000 mon.smithi017 (mon.0) 558 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-06T03:52:43.223 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:43.289570+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: 116 : cephadm [INF] Detected new or changed devices on smithi017 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.295067+0000 mon.smithi017 (mon.0) 559 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: cluster 2023-12-06T03:52:43.508534+0000 mgr.smithi017.mljnlu (mgr.14180) 117 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.701162+0000 mon.smithi017 (mon.0) 560 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.701819+0000 mon.smithi017 (mon.0) 561 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.702371+0000 mon.smithi017 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.702898+0000 mon.smithi017 (mon.0) 563 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: cephadm 2023-12-06T03:52:43.703330+0000 mgr.smithi017.mljnlu (mgr.14180) 118 : cephadm [INF] Adjusting osd_memory_target on smithi017 to 3237M 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.707107+0000 mon.smithi017 (mon.0) 564 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.708001+0000 mon.smithi017 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43. 2023-12-06T03:52:44.555 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: 708633+0000 mon.smithi017 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12-06T03:52:43.712681+0000 mon.smithi017 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: -12-06T03:52:43.716787+0000 mon.smithi017 (mon.0) 568 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: 06T03:52:43.720231+0000 mon.smithi017 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: 06T03:52:43.721213+0000 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: mon.smithi017 (mon.0) 570 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: -12-06T03:52:43 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: .721431+0000 mon.smithi017 (mon.0) 571 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:52:44.556 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: -06T03:52:43.721863+0000 2023-12-06T03:52:44.557 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: mon.smithi017 (mon.0) 572 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.557 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:44 smithi169 conmon[87179]: 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:43.289570+0000 mgr.smithi017.mljnlu (mgr.14180) 116 : cephadm [INF] Detected new or changed devices on smithi017 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.295067+0000 mon.smithi017 (mon.0) 559 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: cluster 2023-12-06T03:52:43.508534+0000 mgr.smithi017.mljnlu (mgr.14180) 117 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.701162+0000 mon.smithi017 (mon.0) 560 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.701819+0000 mon.smithi017 (mon.0) 561 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.702371+0000 mon.smithi017 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.702898+0000 mon.smithi017 (mon.0) 563 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: cephadm 2023-12-06T03:52:43.703330+0000 mgr.smithi017.mljnlu (mgr.14180) 118 : cephadm [INF] Adjusting osd_memory_target on smithi017 to 3237M 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.707107+0000 mon.smithi017 (mon.0) 564 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.708001+0000 mon.smithi017 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.708633+0000 mon.smithi017 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.712681+0000 mon.smithi017 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.716787+0000 mon.smithi017 (mon.0) 568 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.720231+0000 mon.smithi017 (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.721213+0000 mon.smithi017 (mon.0) 570 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.721431+0000 mon.smithi017 (mon.0) 571 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:44 smithi017 conmon[82019]: audit 2023-12-06T03:52:43.721863+0000 mon.smithi017 (mon.0) 572 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:52:44.839 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:44.839 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":38,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","created":"2023-12-06T03:48:44.032180+0000","modified":"2023-12-06T03:52:35.546485+0000","last_up_change":"2023-12-06T03:52:33.543469+0000","last_in_change":"2023-12-06T03:51:57.575291+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-06T03:52:17.626668+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":"29","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":"f9fcc739-f350-47fd-93f9-5d882e83828c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6801","nonce":1718635206}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6803","nonce":1718635206}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6807","nonce":1718635206}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6805","nonce":1718635206}]},"public_addr":"172.21.15.169:6801/1718635206","cluster_addr":"172.21.15.169:6803/1718635206","heartbeat_back_addr":"172.21.15.169:6807/1718635206","heartbeat_front_addr":"172.21.15.169:6805/1718635206","state":["exists","up"]},{"osd":1,"uuid":"b7ee7f84-b024-4a4f-a8e3-01a610a552f9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6802","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6803","nonce":1823517751}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6804","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6805","nonce":1823517751}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6808","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6809","nonce":1823517751}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6806","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6807","nonce":1823517751}]},"public_addr":"172.21.15.17:6803/1823517751","cluster_addr":"172.21.15.17:6805/1823517751","heartbeat_back_addr":"172.21.15.17:6809/1823517751","heartbeat_front_addr":"172.21.15.17:6807/1823517751","state":["exists","up"]},{"osd":2,"uuid":"0e734dbb-2b46-4812-bf08-6fce15584686","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6809","nonce":2598318788}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6811","nonce":2598318788}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6815","nonce":2598318788}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6813","nonce":2598318788}]},"public_addr":"172.21.15.169:6809/2598318788","cluster_addr":"172.21.15.169:6811/2598318788","heartbeat_back_addr":"172.21.15.169:6815/2598318788","heartbeat_front_addr":"172.21.15.169:6813/2598318788","state":["exists","up"]},{"osd":3,"uuid":"5004af9c-1860-4adf-a310-fd3e710e5c44","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.17:6810","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6811","nonce":510528642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6812","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6813","nonce":510528642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6816","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6817","nonce":510528642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6814","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6815","nonce":510528642}]},"public_addr":"172.21.15.17:6811/510528642","cluster_addr":"172.21.15.17:6813/510528642","heartbeat_back_addr":"172.21.15.17:6817/510528642","heartbeat_front_addr":"172.21.15.17:6815/510528642","state":["exists","up"]},{"osd":4,"uuid":"adba6f44-1379-4eab-8cbd-b0e07c84b02d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6816","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6817","nonce":1044595075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6818","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6819","nonce":1044595075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6822","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6823","nonce":1044595075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6820","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6821","nonce":1044595075}]},"public_addr":"172.21.15.169:6817/1044595075","cluster_addr":"172.21.15.169:6819/1044595075","heartbeat_back_addr":"172.21.15.169:6823/1044595075","heartbeat_front_addr":"172.21.15.169:6821/1044595075","state":["exists","up"]},{"osd":5,"uuid":"f68456f0-12f1-4c2b-bbf1-a0f047531c25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6818","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6819","nonce":3443812489}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6820","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6821","nonce":3443812489}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6824","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6825","nonce":3443812489}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6822","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6823","nonce":3443812489}]},"public_addr":"172.21.15.17:6819/3443812489","cluster_addr":"172.21.15.17:6821/3443812489","heartbeat_back_addr":"172.21.15.17:6825/3443812489","heartbeat_front_addr":"172.21.15.17:6823/3443812489","state":["exists","up"]},{"osd":6,"uuid":"3e34478d-ec96-4a9b-8703-78079aff7381","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.169:6824","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6825","nonce":4056126469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6826","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6827","nonce":4056126469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6830","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6831","nonce":4056126469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6828","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6829","nonce":4056126469}]},"public_addr":"172.21.15.169:6825/4056126469","cluster_addr":"172.21.15.169:6827/4056126469","heartbeat_back_addr":"172.21.15.169:6831/4056126469","heartbeat_front_addr":"172.21.15.169:6829/4056126469","state":["exists","up"]},{"osd":7,"uuid":"f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6826","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6827","nonce":4213891911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6828","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6829","nonce":4213891911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6832","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6833","nonce":4213891911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6830","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6831","nonce":4213891911}]},"public_addr":"172.21.15.17:6827/4213891911","cluster_addr":"172.21.15.17:6829/4213891911","heartbeat_back_addr":"172.21.15.17:6833/4213891911","heartbeat_front_addr":"172.21.15.17:6831/4213891911","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:10.102169+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:15.292904+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:14.400641+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:20.654305+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:18.967543+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:26.715919+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:23.341295+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:32.459512+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.17:6800/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2727807779":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2852752082":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6801/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:6801/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:0/465061195":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/295861778":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:6801/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1116517101":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1067241968":"2023-12-07T03:49:11.841838+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2023-12-06T03:52:45.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:45 smithi017 conmon[82019]: audit 2023-12-06T03:52:44.838109 2023-12-06T03:52:45.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:45 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 573 : audit [DBG] from='client.? 172.21.15.17:0/1863109600' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:45.535 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2023-12-06T03:52:17.626668+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': '29', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr_devicehealth': {}}}] 2023-12-06T03:52:45.536 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2023-12-06T03:52:45.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:45 smithi169 conmon[87179]: audit 2023-12-06T03:52:44.838109+0000 mon.smithi017 (mon.0 2023-12-06T03:52:45.751 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:45 smithi169 conmon[87179]: ) 573 : audit [DBG] from='client.? 172.21.15.17:0/1863109600' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:46.239 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:46.561 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:46 smithi017 conmon[82019]: cluster 2023-12-06T03:52:45.509031+0000 2023-12-06T03:52:46.561 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:46 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 119 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:46.573 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:46 smithi169 conmon[87179]: cluster 2023-12-06T03:52:45.509031+0000 mgr.smithi017.mljnlu (mgr.14180) 119 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:48.089 INFO:teuthology.orchestra.run.smithi017.stdout:pg_num: 1 2023-12-06T03:52:48.567 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2023-12-06T03:52:48.568 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2023-12-06T03:52:48.568 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph mgr dump --format=json 2023-12-06T03:52:48.795 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:48 smithi017 conmon[82019]: cluster 2023-12-06T03:52:47.509565+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:52:48.796 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:48 smithi017 conmon[82019]: mgr.14180) 120 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:48.796 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:48 smithi017 conmon[82019]: audit 2023-12-06T03:52:48.088382+0000 mon.smithi017 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.17:0/1620952132' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-12-06T03:52:48.820 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:48 smithi169 conmon[87179]: cluster 2023-12-06T03:52:47.509565+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:52:48.821 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:48 smithi169 conmon[87179]: ) 120 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:48.821 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:48 smithi169 conmon[87179]: audit 2023-12-06T03:52:48.088382+0000 mon.smithi017 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.17:0/1620952132' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-12-06T03:52:49.629 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:50.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:50 smithi017 conmon[82019]: cluster 2023-12-06T03:52:49.509961+0000 mgr.smithi017.mljnlu (mgr.14180) 121 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:50 smithi169 conmon[87179]: cluster 2023-12-06T03:52:49.509961+0000 mgr.smithi017.mljnlu (mgr.14180) 121 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:51.529 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:51.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:51 smithi169 conmon[87179]: audit 2023-12-06T03:52:51.523418+0000 mon.smithi017 (mon.0) 575 : 2023-12-06T03:52:51.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:51 smithi169 conmon[87179]: audit [DBG] from='client.? 172.21.15.17:0/1483364190' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-12-06T03:52:51.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:51 smithi017 conmon[82019]: audit 2023-12-06T03:52:51.523418+0000 mon.smithi017 (mon.0) 575 : audit [DBG] from='client.? 172.21.15.17:0/1483364190' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-12-06T03:52:52.505 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi017.mljnlu","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6800","nonce":975042711},{"type":"v1","addr":"172.21.15.17:6801","nonce":975042711}]},"active_addr":"172.21.15.17:6801/975042711","active_change":"2023-12-06T03:50:21.483080+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14202,"name":"smithi169.rlrcud","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.17:8443/","prometheus":"http://172.21.15.17: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.17:0","nonce":957999949}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.17:0","nonce":2930798441}]}]} 2023-12-06T03:52:52.510 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2023-12-06T03:52:52.510 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2023-12-06T03:52:52.510 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-12-06T03:52:52.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:52 smithi017 conmon[82019]: cluster 2023-12-06T03:52:51.510341+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:52:52.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:52 smithi017 conmon[82019]: .14180) 122 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:52.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:52 smithi017 conmon[82019]: audit 2023-12-06T03:52:51.648872+0000 mon.smithi017 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:52 smithi169 conmon[87179]: cluster 2023-12-06T03:52:51.510341+0000 mgr.smithi017.mljnlu (mgr.14180) 122 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:52 smithi169 conmon[87179]: audit 2023-12-06T03:52:51.648872+0000 mon.smithi017 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:53.330 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:54.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:54 smithi017 conmon[82019]: cluster 2023-12-06T03:52:53.510725+0000 mgr.smithi017.mljnlu (mgr.14180) 123 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:54.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:54 smithi017 conmon[82019]: audit 2023-12-06T03:52:54.497952+0000 mon.smithi017 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:54.969 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:54.969 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":38,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","created":"2023-12-06T03:48:44.032180+0000","modified":"2023-12-06T03:52:35.546485+0000","last_up_change":"2023-12-06T03:52:33.543469+0000","last_in_change":"2023-12-06T03:51:57.575291+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-06T03:52:17.626668+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":"29","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":"f9fcc739-f350-47fd-93f9-5d882e83828c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6801","nonce":1718635206}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6803","nonce":1718635206}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6807","nonce":1718635206}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6805","nonce":1718635206}]},"public_addr":"172.21.15.169:6801/1718635206","cluster_addr":"172.21.15.169:6803/1718635206","heartbeat_back_addr":"172.21.15.169:6807/1718635206","heartbeat_front_addr":"172.21.15.169:6805/1718635206","state":["exists","up"]},{"osd":1,"uuid":"b7ee7f84-b024-4a4f-a8e3-01a610a552f9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6802","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6803","nonce":1823517751}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6804","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6805","nonce":1823517751}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6808","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6809","nonce":1823517751}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6806","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6807","nonce":1823517751}]},"public_addr":"172.21.15.17:6803/1823517751","cluster_addr":"172.21.15.17:6805/1823517751","heartbeat_back_addr":"172.21.15.17:6809/1823517751","heartbeat_front_addr":"172.21.15.17:6807/1823517751","state":["exists","up"]},{"osd":2,"uuid":"0e734dbb-2b46-4812-bf08-6fce15584686","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6809","nonce":2598318788}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6811","nonce":2598318788}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6815","nonce":2598318788}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6813","nonce":2598318788}]},"public_addr":"172.21.15.169:6809/2598318788","cluster_addr":"172.21.15.169:6811/2598318788","heartbeat_back_addr":"172.21.15.169:6815/2598318788","heartbeat_front_addr":"172.21.15.169:6813/2598318788","state":["exists","up"]},{"osd":3,"uuid":"5004af9c-1860-4adf-a310-fd3e710e5c44","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.17:6810","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6811","nonce":510528642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6812","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6813","nonce":510528642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6816","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6817","nonce":510528642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6814","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6815","nonce":510528642}]},"public_addr":"172.21.15.17:6811/510528642","cluster_addr":"172.21.15.17:6813/510528642","heartbeat_back_addr":"172.21.15.17:6817/510528642","heartbeat_front_addr":"172.21.15.17:6815/510528642","state":["exists","up"]},{"osd":4,"uuid":"adba6f44-1379-4eab-8cbd-b0e07c84b02d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6816","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6817","nonce":1044595075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6818","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6819","nonce":1044595075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6822","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6823","nonce":1044595075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6820","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6821","nonce":1044595075}]},"public_addr":"172.21.15.169:6817/1044595075","cluster_addr":"172.21.15.169:6819/1044595075","heartbeat_back_addr":"172.21.15.169:6823/1044595075","heartbeat_front_addr":"172.21.15.169:6821/1044595075","state":["exists","up"]},{"osd":5,"uuid":"f68456f0-12f1-4c2b-bbf1-a0f047531c25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6818","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6819","nonce":3443812489}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6820","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6821","nonce":3443812489}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6824","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6825","nonce":3443812489}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6822","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6823","nonce":3443812489}]},"public_addr":"172.21.15.17:6819/3443812489","cluster_addr":"172.21.15.17:6821/3443812489","heartbeat_back_addr":"172.21.15.17:6825/3443812489","heartbeat_front_addr":"172.21.15.17:6823/3443812489","state":["exists","up"]},{"osd":6,"uuid":"3e34478d-ec96-4a9b-8703-78079aff7381","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.169:6824","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6825","nonce":4056126469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6826","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6827","nonce":4056126469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6830","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6831","nonce":4056126469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6828","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6829","nonce":4056126469}]},"public_addr":"172.21.15.169:6825/4056126469","cluster_addr":"172.21.15.169:6827/4056126469","heartbeat_back_addr":"172.21.15.169:6831/4056126469","heartbeat_front_addr":"172.21.15.169:6829/4056126469","state":["exists","up"]},{"osd":7,"uuid":"f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6826","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6827","nonce":4213891911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6828","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6829","nonce":4213891911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6832","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6833","nonce":4213891911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6830","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6831","nonce":4213891911}]},"public_addr":"172.21.15.17:6827/4213891911","cluster_addr":"172.21.15.17:6829/4213891911","heartbeat_back_addr":"172.21.15.17:6833/4213891911","heartbeat_front_addr":"172.21.15.17:6831/4213891911","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:10.102169+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:15.292904+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:14.400641+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:20.654305+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:18.967543+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:26.715919+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:23.341295+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:32.459512+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.17:6800/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2727807779":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2852752082":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6801/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:6801/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:0/465061195":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/295861778":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:6801/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1116517101":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1067241968":"2023-12-07T03:49:11.841838+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2023-12-06T03:52:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:54 smithi169 conmon[87179]: cluster 2023-12-06T03:52:53 2023-12-06T03:52:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:54 smithi169 conmon[87179]: .510725+0000 mgr.smithi017.mljnlu (mgr.14180) 123 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:54 smithi169 conmon[87179]: audit 2023-12-06T03:52:54.497952+0000 mon.smithi017 (mon.0) 577 : audit [INF] 2023-12-06T03:52:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:54 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:52:55.453 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2023-12-06T03:52:55.453 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-12-06T03:52:55.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:55 smithi017 conmon[82019]: audit 2023-12-06T03:52:54.967810+0000 mon.smithi017 ( 2023-12-06T03:52:55.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:55 smithi017 conmon[82019]: mon.0) 578 : audit [DBG] from='client.? 172.21.15.17:0/1375242164' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:56.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:55 smithi169 conmon[87179]: audit 2023-12-06T03:52:54.967810+0000 mon.smithi017 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.17:0/1375242164' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:56.051 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:56.994 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:56 smithi017 conmon[82019]: cluster 2023-12-06T03:52:55.511064+0000 mgr.smithi017.mljnlu (mgr.14180) 124 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:56.999 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:56 smithi169 conmon[87179]: cluster 2023-12-06T03:52:55.511064+0000 mgr.smithi017.mljnlu (mgr.14180) 124 : cluster 2023-12-06T03:52:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:56 smithi169 conmon[87179]: [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:57.608 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:52:57.608 INFO:teuthology.orchestra.run.smithi017.stdout:{"epoch":38,"fsid":"419dd438-93ea-11ee-95a2-87774f69a715","created":"2023-12-06T03:48:44.032180+0000","modified":"2023-12-06T03:52:35.546485+0000","last_up_change":"2023-12-06T03:52:33.543469+0000","last_in_change":"2023-12-06T03:51:57.575291+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-06T03:52:17.626668+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":"29","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":"f9fcc739-f350-47fd-93f9-5d882e83828c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":36,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6800","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6801","nonce":1718635206}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6802","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6803","nonce":1718635206}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6806","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6807","nonce":1718635206}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6804","nonce":1718635206},{"type":"v1","addr":"172.21.15.169:6805","nonce":1718635206}]},"public_addr":"172.21.15.169:6801/1718635206","cluster_addr":"172.21.15.169:6803/1718635206","heartbeat_back_addr":"172.21.15.169:6807/1718635206","heartbeat_front_addr":"172.21.15.169:6805/1718635206","state":["exists","up"]},{"osd":1,"uuid":"b7ee7f84-b024-4a4f-a8e3-01a610a552f9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6802","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6803","nonce":1823517751}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6804","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6805","nonce":1823517751}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6808","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6809","nonce":1823517751}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6806","nonce":1823517751},{"type":"v1","addr":"172.21.15.17:6807","nonce":1823517751}]},"public_addr":"172.21.15.17:6803/1823517751","cluster_addr":"172.21.15.17:6805/1823517751","heartbeat_back_addr":"172.21.15.17:6809/1823517751","heartbeat_front_addr":"172.21.15.17:6807/1823517751","state":["exists","up"]},{"osd":2,"uuid":"0e734dbb-2b46-4812-bf08-6fce15584686","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6808","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6809","nonce":2598318788}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6810","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6811","nonce":2598318788}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6814","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6815","nonce":2598318788}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6812","nonce":2598318788},{"type":"v1","addr":"172.21.15.169:6813","nonce":2598318788}]},"public_addr":"172.21.15.169:6809/2598318788","cluster_addr":"172.21.15.169:6811/2598318788","heartbeat_back_addr":"172.21.15.169:6815/2598318788","heartbeat_front_addr":"172.21.15.169:6813/2598318788","state":["exists","up"]},{"osd":3,"uuid":"5004af9c-1860-4adf-a310-fd3e710e5c44","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.17:6810","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6811","nonce":510528642}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6812","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6813","nonce":510528642}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6816","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6817","nonce":510528642}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6814","nonce":510528642},{"type":"v1","addr":"172.21.15.17:6815","nonce":510528642}]},"public_addr":"172.21.15.17:6811/510528642","cluster_addr":"172.21.15.17:6813/510528642","heartbeat_back_addr":"172.21.15.17:6817/510528642","heartbeat_front_addr":"172.21.15.17:6815/510528642","state":["exists","up"]},{"osd":4,"uuid":"adba6f44-1379-4eab-8cbd-b0e07c84b02d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6816","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6817","nonce":1044595075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6818","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6819","nonce":1044595075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6822","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6823","nonce":1044595075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6820","nonce":1044595075},{"type":"v1","addr":"172.21.15.169:6821","nonce":1044595075}]},"public_addr":"172.21.15.169:6817/1044595075","cluster_addr":"172.21.15.169:6819/1044595075","heartbeat_back_addr":"172.21.15.169:6823/1044595075","heartbeat_front_addr":"172.21.15.169:6821/1044595075","state":["exists","up"]},{"osd":5,"uuid":"f68456f0-12f1-4c2b-bbf1-a0f047531c25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6818","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6819","nonce":3443812489}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6820","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6821","nonce":3443812489}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6824","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6825","nonce":3443812489}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6822","nonce":3443812489},{"type":"v1","addr":"172.21.15.17:6823","nonce":3443812489}]},"public_addr":"172.21.15.17:6819/3443812489","cluster_addr":"172.21.15.17:6821/3443812489","heartbeat_back_addr":"172.21.15.17:6825/3443812489","heartbeat_front_addr":"172.21.15.17:6823/3443812489","state":["exists","up"]},{"osd":6,"uuid":"3e34478d-ec96-4a9b-8703-78079aff7381","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.169:6824","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6825","nonce":4056126469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6826","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6827","nonce":4056126469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6830","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6831","nonce":4056126469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.169:6828","nonce":4056126469},{"type":"v1","addr":"172.21.15.169:6829","nonce":4056126469}]},"public_addr":"172.21.15.169:6825/4056126469","cluster_addr":"172.21.15.169:6827/4056126469","heartbeat_back_addr":"172.21.15.169:6831/4056126469","heartbeat_front_addr":"172.21.15.169:6829/4056126469","state":["exists","up"]},{"osd":7,"uuid":"f3e3cefe-c4f1-43d5-a08f-e02a3b0cf5b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6826","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6827","nonce":4213891911}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6828","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6829","nonce":4213891911}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6832","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6833","nonce":4213891911}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.17:6830","nonce":4213891911},{"type":"v1","addr":"172.21.15.17:6831","nonce":4213891911}]},"public_addr":"172.21.15.17:6827/4213891911","cluster_addr":"172.21.15.17:6829/4213891911","heartbeat_back_addr":"172.21.15.17:6833/4213891911","heartbeat_front_addr":"172.21.15.17:6831/4213891911","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:10.102169+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:15.292904+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:14.400641+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:20.654305+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:18.967543+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:26.715919+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:23.341295+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-06T03:52:32.459512+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.17:6800/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2727807779":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/2852752082":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6801/1499460695":"2023-12-07T03:50:21.482920+0000","172.21.15.17:6801/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/1800098609":"2023-12-07T03:49:37.497077+0000","172.21.15.17:0/465061195":"2023-12-07T03:50:21.482920+0000","172.21.15.17:0/295861778":"2023-12-07T03:49:37.497077+0000","172.21.15.17:6800/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:6801/3573802558":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1116517101":"2023-12-07T03:49:11.841838+0000","172.21.15.17:0/1067241968":"2023-12-07T03:49:11.841838+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2023-12-06T03:52:58.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:57 smithi169 conmon[87179]: audit 2023-12-06T03:52:57.606755+0000 mon.smithi017 (mon.0) 579 : 2023-12-06T03:52:58.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:57 smithi169 conmon[87179]: audit [DBG] from='client.? 172.21.15.17:0/148517899' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:58.008 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:57 smithi017 conmon[82019]: audit 2023-12-06T03:52:57.606755 2023-12-06T03:52:58.008 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:57 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 579 : audit [DBG] from='client.? 172.21.15.17:0/148517899' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-06T03:52:58.072 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2023-12-06T03:52:58.669 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:52:58.931 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:52:58 smithi017 conmon[82019]: cluster 2023-12-06T03:52:57.511392+0000 mgr.smithi017.mljnlu (mgr.14180) 125 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:52:59.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:58 smithi169 conmon[87179]: cluster 2023-12-06T03:52:57.511392+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:52:59.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:52:58 smithi169 conmon[87179]: 14180) 125 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:00.485 INFO:teuthology.orchestra.run.smithi017.stdout:68719476749 2023-12-06T03:53:00.485 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2023-12-06T03:53:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:00 smithi017 conmon[82019]: cluster 2023-12-06T03:52:59.511705+0000 mgr.smithi017.mljnlu (mgr.14180) 126 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:00 smithi169 conmon[87179]: cluster 2023-12-06T03:52:59.511705+0000 mgr.smithi017.mljnlu (mgr.14180) 126 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:00 smithi169 conmon[87179]: 2023-12-06T03:53:01.083 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:02.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:02 smithi017 conmon[82019]: cluster 2023-12-06T03:53:01.511996+0000 mgr.smithi017.mljnlu (mgr.14180) 127 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:02.905 INFO:teuthology.orchestra.run.smithi017.stdout:90194313228 2023-12-06T03:53:02.905 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2023-12-06T03:53:03.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:02 smithi169 conmon[87179]: cluster 2023-12-06T03:53:01.511996+0000 mgr.smithi017.mljnlu (mgr.14180) 127 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:03.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:02 smithi169 conmon[87179]: 2023-12-06T03:53:03.501 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:04.941 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:04 smithi017 conmon[82019]: cluster 2023-12-06T03:53:03.512302+0000 2023-12-06T03:53:04.942 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:04 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 128 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:05.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:04 smithi169 conmon[87179]: cluster 2023-12-06T03:53:03.512302+0000 mgr.smithi017.mljnlu (mgr.14180) 128 : cluster [DBG] 2023-12-06T03:53:05.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:04 smithi169 conmon[87179]: pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:05.423 INFO:teuthology.orchestra.run.smithi017.stdout:85899345932 2023-12-06T03:53:05.423 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2023-12-06T03:53:06.020 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:07.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:06 smithi169 conmon[87179]: cluster 2023-12-06T03:53:05.512682+0000 mgr.smithi017.mljnlu (mgr.14180) 129 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:07.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:06 smithi017 conmon[82019]: cluster 2023-12-06T03:53:05.512682+0000 mgr.smithi017.mljnlu (mgr.14180) 129 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:07.743 INFO:teuthology.orchestra.run.smithi017.stdout:111669149708 2023-12-06T03:53:07.743 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2023-12-06T03:53:08.343 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:08.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:08 smithi017 conmon[82019]: cluster 2023-12-06T03:53:07.512973+0000 mgr.smithi017.mljnlu (mgr.14180) 130 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:09.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:08 smithi169 conmon[87179]: cluster 2023-12-06T03:53:07.512973+0000 mgr.smithi017.mljnlu (mgr.14180) 130 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:09.950 INFO:teuthology.orchestra.run.smithi017.stdout:103079215115 2023-12-06T03:53:09.950 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2023-12-06T03:53:10.545 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:10 smithi017 conmon[82019]: cluster 2023-12-06T03:53:09.513255+0000 2023-12-06T03:53:10.977 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:10 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 131 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:11.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:10 smithi169 conmon[87179]: cluster 2023-12-06T03:53:09.513255+0000 mgr.smithi017.mljnlu (mgr.14180) 131 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:12.354 INFO:teuthology.orchestra.run.smithi017.stdout:137438953483 2023-12-06T03:53:12.354 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2023-12-06T03:53:12.952 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:13.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:12 smithi169 conmon[87179]: cluster 2023-12-06T03:53:11.513667+0000 mgr.smithi017.mljnlu (mgr.14180) 132 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:13.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:12 smithi017 conmon[82019]: cluster 2023-12-06T03:53:11.513667+0000 mgr.smithi017.mljnlu (mgr.14180) 132 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:14.871 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:14 smithi017 conmon[82019]: cluster 2023-12-06T03:53:13.514212+0000 mgr.smithi017.mljnlu (mgr.14180) 133 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:14.873 INFO:teuthology.orchestra.run.smithi017.stdout:124554051597 2023-12-06T03:53:14.873 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2023-12-06T03:53:15.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:14 smithi169 conmon[87179]: cluster 2023-12-06T03:53:13.514212+0000 mgr.smithi017.mljnlu (mgr.14180) 133 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:15.468 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:16.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:16 smithi017 conmon[82019]: cluster 2023-12-06T03:53:15.514507+0000 mgr.smithi017.mljnlu (mgr.14180) 134 : cluster [DBG] 2023-12-06T03:53:16.834 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:16 smithi017 conmon[82019]: pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:17.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:16 smithi169 conmon[87179]: cluster 2023-12-06T03:53:15.514507+0000 mgr.smithi017.mljnlu (mgr.14180) 134 : cluster [DBG] 2023-12-06T03:53:17.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:16 smithi169 conmon[87179]: pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:17.289 INFO:teuthology.orchestra.run.smithi017.stdout:154618822667 2023-12-06T03:53:17.289 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.0 2023-12-06T03:53:17.886 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:18.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:18 smithi017 conmon[82019]: cluster 2023-12-06T03:53:17.514841 2023-12-06T03:53:18.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:18 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 135 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:19.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:18 smithi169 conmon[87179]: cluster 2023-12-06T03:53:17.514841+0000 mgr.smithi017.mljnlu (mgr.14180) 135 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:19.373 INFO:teuthology.orchestra.run.smithi017.stdout:68719476752 2023-12-06T03:53:19.793 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476749 got 68719476752 for osd.0 2023-12-06T03:53:19.794 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.1 2023-12-06T03:53:20.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:19 smithi169 conmon[87179]: audit 2023-12-06T03:53:19.373134+0000 mon.smithi017 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.17:0/214798137' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-12-06T03:53:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:19 smithi017 conmon[82019]: audit 2023-12-06T03:53:19.373134 2023-12-06T03:53:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:19 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.17:0/214798137' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-12-06T03:53:20.391 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:21.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:20 smithi169 conmon[87179]: cluster 2023-12-06T03:53:19.515292+0000 mgr.smithi017.mljnlu (mgr.14180) 136 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:21.027 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:20 smithi017 conmon[82019]: cluster 2023-12-06T03:53:19.515292+0000 mgr.smithi017.mljnlu (mgr.14180) 136 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:21.885 INFO:teuthology.orchestra.run.smithi017.stdout:90194313232 2023-12-06T03:53:22.514 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313228 got 90194313232 for osd.1 2023-12-06T03:53:22.515 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.2 2023-12-06T03:53:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:22 smithi017 conmon[82019]: cluster 2023-12-06T03:53:21.515591+0000 mgr.smithi017.mljnlu (mgr.14180) 137 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:22.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:22 smithi017 conmon[82019]: audit 2023-12-06T03:53:21.884830+0000 mon.smithi017 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.17:0/376138402' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-12-06T03:53:23.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:22 smithi169 conmon[87179]: cluster 2023-12-06T03:53:21.515591+0000 mgr.smithi017.mljnlu (mgr.14180) 137 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:23.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:22 smithi169 conmon[87179]: audit 2023-12-06T03:53:21.884830+0000 mon.smithi017 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.17:0/376138402' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-12-06T03:53:23.112 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:24.712 INFO:teuthology.orchestra.run.smithi017.stdout:85899345936 2023-12-06T03:53:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:24 smithi169 conmon[87179]: cluster 2023-12-06T03:53:23.516111+0000 mgr.smithi017.mljnlu (mgr.14180) 138 : cluster 2023-12-06T03:53:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:24 smithi169 conmon[87179]: [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:24 smithi017 conmon[82019]: cluster 2023-12-06T03:53:23.516111+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:53:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:24 smithi017 conmon[82019]: 138 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:25.221 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345932 got 85899345936 for osd.2 2023-12-06T03:53:25.222 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.3 2023-12-06T03:53:25.819 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:25 smithi169 conmon[87179]: audit 2023-12-06T03:53:24.710520+0000 mon.smithi017 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.17:0/2164150171' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-12-06T03:53:26.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:25 smithi017 conmon[82019]: audit 2023-12-06T03:53 2023-12-06T03:53:26.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:25 smithi017 conmon[82019]: :24.710520+0000 mon.smithi017 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.17:0/2164150171' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-12-06T03:53:26.950 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:26 smithi017 conmon[82019]: cluster 2023-12-06T03:53:25.516417+0000 mgr.smithi017.mljnlu (mgr.14180) 139 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:26 smithi169 conmon[87179]: cluster 2023-12-06T03:53:25.516417+0000 mgr.smithi017.mljnlu (mgr.14180) 139 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:27.330 INFO:teuthology.orchestra.run.smithi017.stdout:111669149711 2023-12-06T03:53:27.826 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149708 got 111669149711 for osd.3 2023-12-06T03:53:27.826 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.4 2023-12-06T03:53:28.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:27 smithi169 conmon[87179]: audit 2023-12-06T03:53:27.329202+0000 mon.smithi017 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.17:0/2239976886' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-12-06T03:53:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:27 smithi017 conmon[82019]: audit 2023-12-06T03:53:27.329202+0000 mon.smithi017 (mon. 2023-12-06T03:53:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:27 smithi017 conmon[82019]: 0) 583 : audit [DBG] from='client.? 172.21.15.17:0/2239976886' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-12-06T03:53:28.425 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:28 smithi169 conmon[87179]: cluster 2023-12-06T03:53:27.516904+0000 mgr.smithi017.mljnlu (mgr.14180) 140 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:29.009 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:28 smithi017 conmon[82019]: cluster 2023-12-06T03:53:27.516904+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:53:29.009 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:28 smithi017 conmon[82019]: mgr.14180) 140 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:29.909 INFO:teuthology.orchestra.run.smithi017.stdout:103079215119 2023-12-06T03:53:30.435 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215115 got 103079215119 for osd.4 2023-12-06T03:53:30.435 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.5 2023-12-06T03:53:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:30 smithi169 conmon[87179]: cluster 2023-12-06T03:53:29.517273+0000 mgr.smithi017.mljnlu (mgr.14180) 141 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:30 smithi169 conmon[87179]: audit 2023-12-06T03:53:29.908782+0000 mon.smithi017 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.17:0/3416716595' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-12-06T03:53:31.033 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:30 smithi017 conmon[82019]: cluster 2023-12-06T03:53:29.517273+0000 mgr.smithi017.mljnlu (mgr.14180) 141 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:30 smithi017 conmon[82019]: audit 2023-12-06T03:53:29.908782+0000 mon.smithi017 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.17:0/3416716595' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-12-06T03:53:32.485 INFO:teuthology.orchestra.run.smithi017.stdout:137438953487 2023-12-06T03:53:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:32 smithi017 conmon[82019]: cluster 2023-12-06T03:53:31.517554+0000 mgr.smithi017.mljnlu (mgr.14180) 142 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:32.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:32 smithi017 conmon[82019]: audit 2023-12-06T03:53:32.485049+0000 mon.smithi017 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.17:0/146647112' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-12-06T03:53:32.954 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953483 got 137438953487 for osd.5 2023-12-06T03:53:32.954 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.6 2023-12-06T03:53:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:32 smithi169 conmon[87179]: cluster 2023-12-06T03:53:31.517554+0000 mgr.smithi017.mljnlu (mgr.14180) 142 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:32 smithi169 conmon[87179]: 2023-12-06T03:53:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:32 smithi169 conmon[87179]: audit 2023-12-06T03:53:32.485049+0000 mon.smithi017 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.17:0/146647112' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-12-06T03:53:33.554 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:34 smithi169 conmon[87179]: cluster 2023-12-06T03:53:33.517877+0000 mgr.smithi017.mljnlu (mgr.14180) 143 : 2023-12-06T03:53:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:34 smithi169 conmon[87179]: cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:34 smithi017 conmon[82019]: cluster 2023-12-06T03:53:33.517877+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:53:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:34 smithi017 conmon[82019]: mgr.14180) 143 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:35.105 INFO:teuthology.orchestra.run.smithi017.stdout:124554051601 2023-12-06T03:53:35.576 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051597 got 124554051601 for osd.6 2023-12-06T03:53:35.576 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.7 2023-12-06T03:53:35.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:35 smithi017 conmon[82019]: audit 2023-12-06T03:53:35.104783+0000 mon.smithi017 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.17:0/3888579006' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-12-06T03:53:36.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:35 smithi169 conmon[87179]: audit 2023-12-06T03:53:35.104783+0000 mon.smithi017 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.17:0/3888579006' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-12-06T03:53:36.171 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:37.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:36 smithi169 conmon[87179]: cluster 2023-12-06T03:53:35.518245+0000 mgr.smithi017.mljnlu (mgr.14180) 144 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:37.041 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:36 smithi017 conmon[82019]: cluster 2023-12-06T03:53:35.518245+0000 mgr.smithi017.mljnlu (mgr.14180) 144 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:37.788 INFO:teuthology.orchestra.run.smithi017.stdout:154618822671 2023-12-06T03:53:38.183 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822667 got 154618822671 for osd.7 2023-12-06T03:53:38.183 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2023-12-06T03:53:38.184 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph pg dump --format=json 2023-12-06T03:53:38.780 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:38.990 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:38 smithi017 conmon[82019]: cluster 2023-12-06T03:53:37.518521+0000 mgr.smithi017.mljnlu (mgr.14180) 145 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:38.990 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:38 smithi017 conmon[82019]: audit 2023-12-06T03:53:37.786918+0000 mon.smithi017 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.17:0/527470449' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-12-06T03:53:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:38 smithi169 conmon[87179]: cluster 2023-12-06T03:53:37.518521+0000 mgr.smithi017.mljnlu (mgr.14180) 145 2023-12-06T03:53:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:38 smithi169 conmon[87179]: : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:38 smithi169 conmon[87179]: audit 2023-12-06T03:53:37.786918+0000 mon.smithi017 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.17:0/527470449' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-12-06T03:53:40.264 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:53:40.265 INFO:teuthology.orchestra.run.smithi017.stderr:dumped all 2023-12-06T03:53:40.789 INFO:teuthology.orchestra.run.smithi017.stdout:{"pg_ready":true,"pg_map":{"version":126,"stamp":"2023-12-06T03:53:39.518709+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":2379732,"kb_used_data":2964,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548716,"statfs":{"total":767926730752,"available":765489885184,"internally_reserved":0,"allocated":3035136,"data_stored":1188135,"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":38,"state":"active+clean","last_fresh":"2023-12-06T03:52:35.663880+0000","last_change":"2023-12-06T03:52:35.663880+0000","last_active":"2023-12-06T03:52:35.663880+0000","last_peered":"2023-12-06T03:52:35.663880+0000","last_clean":"2023-12-06T03:52:35.663880+0000","last_became_active":"2023-12-06T03:52:35.663589+0000","last_became_peered":"2023-12-06T03:52:35.663589+0000","last_unstale":"2023-12-06T03:52:35.663880+0000","last_undegraded":"2023-12-06T03:52:35.663880+0000","last_fullsized":"2023-12-06T03:52:35.663880+0000","mapping_epoch":37,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":38,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-12-06T03:52:18.175267+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-12-06T03:52:18.175267+0000","last_clean_scrub_stamp":"2023-12-06T03:52:18.175267+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822672,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"last":0.46000000000000002},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.437}]},{"osd":1,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.29299999999999998,"5min":0.29299999999999998,"15min":0.29299999999999998},"max":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.51600000000000001}]},{"osd":2,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.89800000000000002,"5min":0.89800000000000002,"15min":0.89800000000000002},"last":0.50600000000000001},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.53800000000000003}]},{"osd":3,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"min":{"1min":0.27800000000000002,"5min":0.27800000000000002,"15min":0.27800000000000002},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.48099999999999998},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.28499999999999998,"5min":0.28499999999999998,"15min":0.28499999999999998},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.55400000000000005}]},{"osd":4,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.59199999999999997},{"interface":"front","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.432,"5min":0.432,"15min":0.432},"max":{"1min":0.81399999999999995,"5min":0.81399999999999995,"15min":0.81399999999999995},"last":0.56999999999999995}]},{"osd":5,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.90100000000000002,"5min":0.90100000000000002,"15min":0.90100000000000002},"last":0.60899999999999999},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.91700000000000004,"5min":0.91700000000000004,"15min":0.91700000000000004},"last":0.66000000000000003}]},{"osd":6,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.437,"5min":0.437,"15min":0.437},"max":{"1min":0.78700000000000003,"5min":0.78700000000000003,"15min":0.78700000000000003},"last":0.628},{"interface":"front","average":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":4.1740000000000004,"5min":4.1740000000000004,"15min":4.1740000000000004},"last":0.623}]}]},{"osd":5,"up_from":32,"seq":137438953489,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"last":0.443},{"interface":"front","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.52400000000000002}]},{"osd":1,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"last":0.46100000000000002},{"interface":"front","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"last":0.49099999999999999}]},{"osd":2,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.79300000000000004,"5min":0.79300000000000004,"15min":0.79300000000000004},"last":0.57299999999999995},{"interface":"front","average":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.81399999999999995,"5min":0.81399999999999995,"15min":0.81399999999999995},"last":0.56599999999999995}]},{"osd":3,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"last":0.46899999999999997},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.57899999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"last":0.53400000000000003}]},{"osd":4,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.56000000000000005}]},{"osd":6,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"min":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.68500000000000005}]},{"osd":7,"last update":"Wed Dec 6 03:53:34 2023","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.32900000000000001,"5min":0.32900000000000001,"15min":0.32900000000000001},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.61199999999999999},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.64900000000000002}]}]},{"osd":2,"up_from":20,"seq":85899345939,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:19 2023","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.21299999999999999,"5min":0.21299999999999999,"15min":0.21299999999999999},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.32000000000000001},{"interface":"front","average":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.29499999999999998}]},{"osd":1,"last update":"Wed Dec 6 03:53:19 2023","interfaces":[{"interface":"back","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.66500000000000004,"5min":0.66500000000000004,"15min":0.66500000000000004},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.33700000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:22 2023","interfaces":[{"interface":"back","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.35799999999999998},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.55800000000000005}]},{"osd":4,"last update":"Wed Dec 6 03:53:22 2023","interfaces":[{"interface":"back","average":{"1min":0.46500000000000002,"5min":0.46500000000000002,"15min":0.46500000000000002},"min":{"1min":0.27600000000000002,"5min":0.27600000000000002,"15min":0.27600000000000002},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.58599999999999997},{"interface":"front","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.38300000000000001}]},{"osd":5,"last update":"Wed Dec 6 03:53:28 2023","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.45600000000000002},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.46300000000000002}]},{"osd":6,"last update":"Wed Dec 6 03:53:28 2023","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.60799999999999998},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.91600000000000004,"5min":0.91600000000000004,"15min":0.91600000000000004},"last":0.42199999999999999}]},{"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.54500000000000004}]}]},{"osd":0,"up_from":16,"seq":68719476757,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:20 2023","interfaces":[{"interface":"back","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.52900000000000003},{"interface":"front","average":{"1min":0.496,"5min":0.496,"15min":0.496},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.65200000000000002}]},{"osd":2,"last update":"Wed Dec 6 03:53:20 2023","interfaces":[{"interface":"back","average":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.30199999999999999},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.28199999999999997,"5min":0.28199999999999997,"15min":0.28199999999999997},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.43099999999999999}]},{"osd":3,"last update":"Wed Dec 6 03:53:24 2023","interfaces":[{"interface":"back","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.58399999999999996},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.56499999999999995}]},{"osd":4,"last update":"Wed Dec 6 03:53:21 2023","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.753,"5min":0.753,"15min":0.753},"last":0.372},{"interface":"front","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.36099999999999999}]},{"osd":5,"last update":"Wed Dec 6 03:53:29 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":0.79400000000000004,"5min":0.79400000000000004,"15min":0.79400000000000004},"last":0.63500000000000001},{"interface":"front","average":{"1min":0.622,"5min":0.622,"15min":0.622},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.94999999999999996,"5min":0.94999999999999996,"15min":0.94999999999999996},"last":0.51300000000000001}]},{"osd":6,"last update":"Wed Dec 6 03:53:26 2023","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.45500000000000002},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"last":0.48299999999999998}]},{"osd":7,"last update":"Wed Dec 6 03:53:34 2023","interfaces":[{"interface":"back","average":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.85299999999999998,"5min":0.85299999999999998,"15min":0.85299999999999998},"last":0.54400000000000004},{"interface":"front","average":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.60499999999999998}]}]},{"osd":1,"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":297464,"kb_used_data":368,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443592,"statfs":{"total":95990841344,"available":95686238208,"internally_reserved":0,"allocated":376832,"data_stored":148426,"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":"Wed Dec 6 03:53:17 2023","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.53600000000000003},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":3.7090000000000001,"5min":3.7090000000000001,"15min":3.7090000000000001},"last":0.41899999999999998}]},{"osd":2,"last update":"Wed Dec 6 03:53:17 2023","interfaces":[{"interface":"back","average":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":3.7200000000000002,"5min":3.7200000000000002,"15min":3.7200000000000002},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.46100000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.38800000000000001},{"interface":"front","average":{"1min":0.434,"5min":0.434,"15min":0.434},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":1.024,"5min":1.024,"15min":1.024},"last":0.441}]},{"osd":4,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.98499999999999999,"5min":0.98499999999999999,"15min":0.98499999999999999},"last":0.47299999999999998},{"interface":"front","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.498}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"min":{"1min":0.29599999999999999,"5min":0.29599999999999999,"15min":0.29599999999999999},"max":{"1min":0.622,"5min":0.622,"15min":0.622},"last":0.36299999999999999}]},{"osd":6,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":3.7440000000000002,"5min":3.7440000000000002,"15min":3.7440000000000002},"last":0.40899999999999997},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.56399999999999995}]},{"osd":7,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.63200000000000001,"5min":0.63200000000000001,"15min":0.63200000000000001},"last":0.35099999999999998},{"interface":"front","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.371}]}]},{"osd":4,"up_from":24,"seq":103079215121,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.38900000000000001},{"interface":"front","average":{"1min":0.46300000000000002,"5min":0.46300000000000002,"15min":0.46300000000000002},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.624,"5min":0.624,"15min":0.624},"last":0.41499999999999998}]},{"osd":1,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.496},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.47899999999999998}]},{"osd":2,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"last":0.33500000000000002},{"interface":"front","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.36399999999999999}]},{"osd":3,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.47099999999999997},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.56699999999999995}]},{"osd":5,"last update":"Wed Dec 6 03:53:30 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.51800000000000002},{"interface":"front","average":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"min":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.60999999999999999}]},{"osd":6,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.64600000000000002},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.73599999999999999,"5min":0.73599999999999999,"15min":0.73599999999999999},"last":0.55500000000000005}]},{"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.58199999999999996}]}]},{"osd":3,"up_from":26,"seq":111669149714,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297460,"kb_used_data":364,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443596,"statfs":{"total":95990841344,"available":95686242304,"internally_reserved":0,"allocated":372736,"data_stored":147263,"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":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.90400000000000003,"5min":0.90400000000000003,"15min":0.90400000000000003},"last":0.52100000000000002},{"interface":"front","average":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.84799999999999998,"5min":0.84799999999999998,"15min":0.84799999999999998},"last":0.56499999999999995}]},{"osd":1,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"last":0.33800000000000002},{"interface":"front","average":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"min":{"1min":0.249,"5min":0.249,"15min":0.249},"max":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"last":0.39700000000000002}]},{"osd":2,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.311,"5min":0.311,"15min":0.311},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.50900000000000001},{"interface":"front","average":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.86099999999999999,"5min":0.86099999999999999,"15min":0.86099999999999999},"last":0.501}]},{"osd":4,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.53300000000000003},{"interface":"front","average":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.47899999999999998}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.44500000000000001},{"interface":"front","average":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.39000000000000001}]},{"osd":6,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.46600000000000003},{"interface":"front","average":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.89100000000000001,"5min":0.89100000000000001,"15min":0.89100000000000001},"last":0.65400000000000003}]},{"osd":7,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.61399999999999999,"5min":0.61399999999999999,"15min":0.61399999999999999},"last":0.61399999999999999},{"interface":"front","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.374,"5min":0.374,"15min":0.374},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.439}]}]},{"osd":6,"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":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.35099999999999998},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.67400000000000004,"5min":0.67400000000000004,"15min":0.67400000000000004},"last":0.432}]},{"osd":1,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.74099999999999999},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.88700000000000001,"5min":0.88700000000000001,"15min":0.88700000000000001},"last":0.57399999999999995}]},{"osd":2,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.40600000000000003},{"interface":"front","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.79700000000000004,"5min":0.79700000000000004,"15min":0.79700000000000004},"last":0.33300000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"last":0.79400000000000004},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.61199999999999999}]},{"osd":4,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.379},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.90800000000000003,"5min":0.90800000000000003,"15min":0.90800000000000003},"last":0.36399999999999999}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"last":0.70399999999999996},{"interface":"front","average":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"min":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":0.85399999999999998,"5min":0.85399999999999998,"15min":0.85399999999999998},"last":0.59499999999999997}]},{"osd":7,"last update":"Wed Dec 6 03:53:35 2023","interfaces":[{"interface":"back","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":0.82699999999999996,"5min":0.82699999999999996,"15min":0.82699999999999996},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"min":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":0.874,"5min":0.874,"15min":0.874},"last":0.76400000000000001}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2023-12-06T03:53:40.792 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph pg dump --format=json 2023-12-06T03:53:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:40 smithi169 conmon[87179]: cluster 2023-12-06T03:53:39.518991+0000 mgr.smithi017.mljnlu (mgr.14180) 146 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:40 smithi017 conmon[82019]: cluster 2023-12-06T03:53:39.518991+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:53:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:40 smithi017 conmon[82019]: mgr.14180) 146 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:41.389 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:42.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:41 smithi169 conmon[87179]: audit 2023-12-06T03:53:40.260983+0000 mgr.smithi017.mljnlu (mgr.14180) 147 : audit [DBG] 2023-12-06T03:53:42.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:41 smithi169 conmon[87179]: from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:53:42.041 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:41 smithi017 conmon[82019]: audit 2023-12-06T03:53:40.260983+0000 mgr.smithi017.mljnlu (mgr.14180) 147 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:53:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:42 smithi017 conmon[82019]: cluster 2023-12-06T03:53:41.519451+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:53:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:42 smithi017 conmon[82019]: .14180) 148 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:42.892 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:53:42.894 INFO:teuthology.orchestra.run.smithi017.stderr:dumped all 2023-12-06T03:53:43.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:42 smithi169 conmon[87179]: cluster 2023-12-06T03:53:41.519451+0000 mgr.smithi017.mljnlu (mgr.14180) 148 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:43.410 INFO:teuthology.orchestra.run.smithi017.stdout:{"pg_ready":true,"pg_map":{"version":127,"stamp":"2023-12-06T03:53:41.519211+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":2379732,"kb_used_data":2964,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548716,"statfs":{"total":767926730752,"available":765489885184,"internally_reserved":0,"allocated":3035136,"data_stored":1188135,"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":38,"state":"active+clean","last_fresh":"2023-12-06T03:52:35.663880+0000","last_change":"2023-12-06T03:52:35.663880+0000","last_active":"2023-12-06T03:52:35.663880+0000","last_peered":"2023-12-06T03:52:35.663880+0000","last_clean":"2023-12-06T03:52:35.663880+0000","last_became_active":"2023-12-06T03:52:35.663589+0000","last_became_peered":"2023-12-06T03:52:35.663589+0000","last_unstale":"2023-12-06T03:52:35.663880+0000","last_undegraded":"2023-12-06T03:52:35.663880+0000","last_fullsized":"2023-12-06T03:52:35.663880+0000","mapping_epoch":37,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":38,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-12-06T03:52:18.175267+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-12-06T03:52:18.175267+0000","last_clean_scrub_stamp":"2023-12-06T03:52:18.175267+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822672,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"last":0.46000000000000002},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.437}]},{"osd":1,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.29299999999999998,"5min":0.29299999999999998,"15min":0.29299999999999998},"max":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.51600000000000001}]},{"osd":2,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.89800000000000002,"5min":0.89800000000000002,"15min":0.89800000000000002},"last":0.50600000000000001},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.53800000000000003}]},{"osd":3,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"min":{"1min":0.27800000000000002,"5min":0.27800000000000002,"15min":0.27800000000000002},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.48099999999999998},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.28499999999999998,"5min":0.28499999999999998,"15min":0.28499999999999998},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.55400000000000005}]},{"osd":4,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.59199999999999997},{"interface":"front","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.432,"5min":0.432,"15min":0.432},"max":{"1min":0.81399999999999995,"5min":0.81399999999999995,"15min":0.81399999999999995},"last":0.56999999999999995}]},{"osd":5,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.90100000000000002,"5min":0.90100000000000002,"15min":0.90100000000000002},"last":0.60899999999999999},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.91700000000000004,"5min":0.91700000000000004,"15min":0.91700000000000004},"last":0.66000000000000003}]},{"osd":6,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.437,"5min":0.437,"15min":0.437},"max":{"1min":0.78700000000000003,"5min":0.78700000000000003,"15min":0.78700000000000003},"last":0.628},{"interface":"front","average":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":4.1740000000000004,"5min":4.1740000000000004,"15min":4.1740000000000004},"last":0.623}]}]},{"osd":5,"up_from":32,"seq":137438953489,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"last":0.443},{"interface":"front","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.52400000000000002}]},{"osd":1,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"last":0.46100000000000002},{"interface":"front","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"last":0.49099999999999999}]},{"osd":2,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.79300000000000004,"5min":0.79300000000000004,"15min":0.79300000000000004},"last":0.57299999999999995},{"interface":"front","average":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.81399999999999995,"5min":0.81399999999999995,"15min":0.81399999999999995},"last":0.56599999999999995}]},{"osd":3,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"last":0.46899999999999997},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.57899999999999996,"5min":0.57899999999999996,"15min":0.57899999999999996},"last":0.53400000000000003}]},{"osd":4,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.56000000000000005}]},{"osd":6,"last update":"Wed Dec 6 03:53:32 2023","interfaces":[{"interface":"back","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"min":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.68500000000000005}]},{"osd":7,"last update":"Wed Dec 6 03:53:34 2023","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.32900000000000001,"5min":0.32900000000000001,"15min":0.32900000000000001},"max":{"1min":0.64400000000000002,"5min":0.64400000000000002,"15min":0.64400000000000002},"last":0.61199999999999999},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.64900000000000002}]}]},{"osd":2,"up_from":20,"seq":85899345940,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:19 2023","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.21299999999999999,"5min":0.21299999999999999,"15min":0.21299999999999999},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.31},{"interface":"front","average":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.32700000000000001}]},{"osd":1,"last update":"Wed Dec 6 03:53:19 2023","interfaces":[{"interface":"back","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.66500000000000004,"5min":0.66500000000000004,"15min":0.66500000000000004},"last":0.38500000000000001},{"interface":"front","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.52300000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:22 2023","interfaces":[{"interface":"back","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.39300000000000002},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.496}]},{"osd":4,"last update":"Wed Dec 6 03:53:22 2023","interfaces":[{"interface":"back","average":{"1min":0.46500000000000002,"5min":0.46500000000000002,"15min":0.46500000000000002},"min":{"1min":0.27600000000000002,"5min":0.27600000000000002,"15min":0.27600000000000002},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.56299999999999994}]},{"osd":5,"last update":"Wed Dec 6 03:53:28 2023","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.60699999999999998},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.436}]},{"osd":6,"last update":"Wed Dec 6 03:53:28 2023","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.91600000000000004,"5min":0.91600000000000004,"15min":0.91600000000000004},"last":0.58699999999999997}]},{"osd":7,"last update":"Wed Dec 6 03:53:36 2023","interfaces":[{"interface":"back","average":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"min":{"1min":0.441,"5min":0.441,"15min":0.441},"max":{"1min":0.78700000000000003,"5min":0.78700000000000003,"15min":0.78700000000000003},"last":0.47099999999999997},{"interface":"front","average":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"min":{"1min":0.45400000000000001,"5min":0.45400000000000001,"15min":0.45400000000000001},"max":{"1min":0.80100000000000005,"5min":0.80100000000000005,"15min":0.80100000000000005},"last":0.53800000000000003}]}]},{"osd":0,"up_from":16,"seq":68719476757,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:20 2023","interfaces":[{"interface":"back","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.52900000000000003},{"interface":"front","average":{"1min":0.496,"5min":0.496,"15min":0.496},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.65200000000000002}]},{"osd":2,"last update":"Wed Dec 6 03:53:20 2023","interfaces":[{"interface":"back","average":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.30199999999999999},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.28199999999999997,"5min":0.28199999999999997,"15min":0.28199999999999997},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.43099999999999999}]},{"osd":3,"last update":"Wed Dec 6 03:53:24 2023","interfaces":[{"interface":"back","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.58399999999999996},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.56499999999999995}]},{"osd":4,"last update":"Wed Dec 6 03:53:21 2023","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.753,"5min":0.753,"15min":0.753},"last":0.372},{"interface":"front","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.36099999999999999}]},{"osd":5,"last update":"Wed Dec 6 03:53:29 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":0.79400000000000004,"5min":0.79400000000000004,"15min":0.79400000000000004},"last":0.63500000000000001},{"interface":"front","average":{"1min":0.622,"5min":0.622,"15min":0.622},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.94999999999999996,"5min":0.94999999999999996,"15min":0.94999999999999996},"last":0.51300000000000001}]},{"osd":6,"last update":"Wed Dec 6 03:53:26 2023","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.45500000000000002},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"last":0.48299999999999998}]},{"osd":7,"last update":"Wed Dec 6 03:53:34 2023","interfaces":[{"interface":"back","average":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.85299999999999998,"5min":0.85299999999999998,"15min":0.85299999999999998},"last":0.54400000000000004},{"interface":"front","average":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.60499999999999998}]}]},{"osd":1,"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":297464,"kb_used_data":368,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443592,"statfs":{"total":95990841344,"available":95686238208,"internally_reserved":0,"allocated":376832,"data_stored":148426,"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":"Wed Dec 6 03:53:17 2023","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.53600000000000003},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":3.7090000000000001,"5min":3.7090000000000001,"15min":3.7090000000000001},"last":0.41899999999999998}]},{"osd":2,"last update":"Wed Dec 6 03:53:17 2023","interfaces":[{"interface":"back","average":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":3.7200000000000002,"5min":3.7200000000000002,"15min":3.7200000000000002},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.46100000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.38800000000000001},{"interface":"front","average":{"1min":0.434,"5min":0.434,"15min":0.434},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":1.024,"5min":1.024,"15min":1.024},"last":0.441}]},{"osd":4,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.98499999999999999,"5min":0.98499999999999999,"15min":0.98499999999999999},"last":0.47299999999999998},{"interface":"front","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.498}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"min":{"1min":0.29599999999999999,"5min":0.29599999999999999,"15min":0.29599999999999999},"max":{"1min":0.622,"5min":0.622,"15min":0.622},"last":0.36299999999999999}]},{"osd":6,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":3.7440000000000002,"5min":3.7440000000000002,"15min":3.7440000000000002},"last":0.40899999999999997},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.56399999999999995}]},{"osd":7,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.63200000000000001,"5min":0.63200000000000001,"15min":0.63200000000000001},"last":0.35099999999999998},{"interface":"front","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.371}]}]},{"osd":4,"up_from":24,"seq":103079215122,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.40100000000000002},{"interface":"front","average":{"1min":0.46300000000000002,"5min":0.46300000000000002,"15min":0.46300000000000002},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.624,"5min":0.624,"15min":0.624},"last":0.38500000000000001}]},{"osd":1,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.502}]},{"osd":2,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"last":0.45600000000000002},{"interface":"front","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.64600000000000002,"5min":0.64600000000000002,"15min":0.64600000000000002},"last":0.36899999999999999}]},{"osd":3,"last update":"Wed Dec 6 03:53:23 2023","interfaces":[{"interface":"back","average":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.51800000000000002},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.57499999999999996}]},{"osd":5,"last update":"Wed Dec 6 03:53:30 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"min":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.49399999999999999}]},{"osd":6,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.53400000000000003},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.73599999999999999,"5min":0.73599999999999999,"15min":0.73599999999999999},"last":0.61599999999999999}]},{"osd":7,"last update":"Wed Dec 6 03:53:38 2023","interfaces":[{"interface":"back","average":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"min":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.60499999999999998},{"interface":"front","average":{"1min":0.66900000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"min":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.63200000000000001}]}]},{"osd":3,"up_from":26,"seq":111669149714,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297460,"kb_used_data":364,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443596,"statfs":{"total":95990841344,"available":95686242304,"internally_reserved":0,"allocated":372736,"data_stored":147263,"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":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.90400000000000003,"5min":0.90400000000000003,"15min":0.90400000000000003},"last":0.52100000000000002},{"interface":"front","average":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.84799999999999998,"5min":0.84799999999999998,"15min":0.84799999999999998},"last":0.56499999999999995}]},{"osd":1,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"last":0.33800000000000002},{"interface":"front","average":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"min":{"1min":0.249,"5min":0.249,"15min":0.249},"max":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"last":0.39700000000000002}]},{"osd":2,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.311,"5min":0.311,"15min":0.311},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.50900000000000001},{"interface":"front","average":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.86099999999999999,"5min":0.86099999999999999,"15min":0.86099999999999999},"last":0.501}]},{"osd":4,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.53300000000000003},{"interface":"front","average":{"1min":0.53700000000000003,"5min":0.53700000000000003,"15min":0.53700000000000003},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.47899999999999998}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.44500000000000001},{"interface":"front","average":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.39000000000000001}]},{"osd":6,"last update":"Wed Dec 6 03:53:25 2023","interfaces":[{"interface":"back","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.46600000000000003},{"interface":"front","average":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.89100000000000001,"5min":0.89100000000000001,"15min":0.89100000000000001},"last":0.65400000000000003}]},{"osd":7,"last update":"Wed Dec 6 03:53:37 2023","interfaces":[{"interface":"back","average":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.61399999999999999,"5min":0.61399999999999999,"15min":0.61399999999999999},"last":0.61399999999999999},{"interface":"front","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.374,"5min":0.374,"15min":0.374},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.439}]}]},{"osd":6,"up_from":29,"seq":124554051603,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297468,"kb_used_data":372,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443588,"statfs":{"total":95990841344,"available":95686234112,"internally_reserved":0,"allocated":380928,"data_stored":148741,"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":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.36099999999999999},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.67400000000000004,"5min":0.67400000000000004,"15min":0.67400000000000004},"last":0.375}]},{"osd":1,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.57499999999999996},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.88700000000000001,"5min":0.88700000000000001,"15min":0.88700000000000001},"last":0.64700000000000002}]},{"osd":2,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.315,"5min":0.315,"15min":0.315},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.44800000000000001},{"interface":"front","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.79700000000000004,"5min":0.79700000000000004,"15min":0.79700000000000004},"last":0.52700000000000002}]},{"osd":3,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"last":0.55400000000000005},{"interface":"front","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.72599999999999998}]},{"osd":4,"last update":"Wed Dec 6 03:53:27 2023","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.46000000000000002},{"interface":"front","average":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.90800000000000003,"5min":0.90800000000000003,"15min":0.90800000000000003},"last":0.51100000000000001}]},{"osd":5,"last update":"Wed Dec 6 03:53:31 2023","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"last":0.67600000000000005},{"interface":"front","average":{"1min":0.63400000000000001,"5min":0.63400000000000001,"15min":0.63400000000000001},"min":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":0.85399999999999998,"5min":0.85399999999999998,"15min":0.85399999999999998},"last":0.69199999999999995}]},{"osd":7,"last update":"Wed Dec 6 03:53:35 2023","interfaces":[{"interface":"back","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.502,"5min":0.502,"15min":0.502},"max":{"1min":0.82699999999999996,"5min":0.82699999999999996,"15min":0.82699999999999996},"last":0.71099999999999997},{"interface":"front","average":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"min":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":0.874,"5min":0.874,"15min":0.874},"last":0.70199999999999996}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2023-12-06T03:53:43.411 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2023-12-06T03:53:43.411 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2023-12-06T03:53:43.411 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2023-12-06T03:53:43.411 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph health --format=json 2023-12-06T03:53:44.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:43 smithi169 conmon[87179]: audit 2023-12-06T03:53:42.888951+0000 mgr.smithi017.mljnlu (mgr.14180) 149 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:53:44.008 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring config /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/mon.smithi017/config 2023-12-06T03:53:44.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:43 smithi017 conmon[82019]: audit 2023-12-06T03:53:42.888951+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:53:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:43 smithi017 conmon[82019]: mgr.14180) 149 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:53:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:44 smithi169 conmon[87179]: cluster 2023-12-06T03:53:43.519792+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:53:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:44 smithi169 conmon[87179]: .14180) 150 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:44 smithi017 conmon[82019]: cluster 2023-12-06T03:53:43.519792+0000 mgr.smithi017.mljnlu (mgr.14180) 150 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:45.514 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:53:45.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:45 smithi017 conmon[82019]: audit 2023-12-06T03:53:45.513177+0000 mon.smithi017 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.17:0/2093907047' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-12-06T03:53:46.029 INFO:teuthology.orchestra.run.smithi017.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2023-12-06T03:53:46.029 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2023-12-06T03:53:46.030 INFO:tasks.cephadm:Setup complete, yielding 2023-12-06T03:53:46.030 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-06T03:53:46.039 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:53:46.040 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch status' 2023-12-06T03:53:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:45 smithi169 conmon[87179]: audit 2023-12-06T03:53:45.513177+0000 mon.smithi017 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.17:0/2093907047' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-12-06T03:53:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:46 smithi017 conmon[82019]: cluster 2023-12-06T03:53:45.520080+0000 mgr.smithi017.mljnlu (mgr.14180) 151 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:46.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:46 smithi017 conmon[82019]: 2023-12-06T03:53:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:46 smithi169 conmon[87179]: cluster 2023-12-06T03:53:45.520080+0000 mgr.smithi017.mljnlu (mgr.14180) 151 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:47.858 INFO:teuthology.orchestra.run.smithi017.stdout:Backend: cephadm 2023-12-06T03:53:47.858 INFO:teuthology.orchestra.run.smithi017.stdout:Available: Yes 2023-12-06T03:53:47.858 INFO:teuthology.orchestra.run.smithi017.stdout:Paused: No 2023-12-06T03:53:48.389 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch ps' 2023-12-06T03:53:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:48 smithi017 conmon[82019]: cluster 2023-12-06T03:53:47.520351+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:53:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:48 smithi017 conmon[82019]: mgr.14180) 152 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:48 smithi017 conmon[82019]: audit 2023-12-06T03:53:47.857402+0000 mgr.smithi017.mljnlu (mgr.14180) 153 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:48 smithi169 conmon[87179]: cluster 2023-12-06T03:53:47.520351+0000 mgr.smithi017.mljnlu (mgr.14180) 152 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:48 smithi169 conmon[87179]: audit 2023-12-06T03:53:47.857402+0000 mgr.smithi017.mljnlu (mgr.14180) 153 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:50.221 INFO:teuthology.orchestra.run.smithi017.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2023-12-06T03:53:50.221 INFO:teuthology.orchestra.run.smithi017.stdout:alertmanager.smithi017 smithi017 *:9093,9094 running (2m) 70s ago 3m 16.2M - 0.23.0 ba2b418f427c 2096f0d3070e 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:crash.smithi017 smithi017 running (3m) 70s ago 3m 7306k - 16.2.14-335-gd03fca4f f9c9e8cc8fe8 79be655741b8 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:crash.smithi169 smithi169 running (3m) 74s ago 2m 7411k - 16.2.14-335-gd03fca4f f9c9e8cc8fe8 f5778c575009 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:grafana.smithi017 smithi017 *:3000 running (2m) 70s ago 3m 47.9M - 8.3.5 dad864ee21e9 57ad54d90a77 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:mgr.smithi017.mljnlu smithi017 *:9283 running (5m) 70s ago 4m 444M - 16.2.14-335-gd03fca4f f9c9e8cc8fe8 dee61bb8315a 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:mgr.smithi169.rlrcud smithi169 *:8443,9283 running (2m) 74s ago 2m 397M - 16.2.14-335-gd03fca4f f9c9e8cc8fe8 6dab200e5aa5 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:mon.smithi017 smithi017 running (5m) 70s ago 5m 78.9M 2048M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 9c870a2d86bd 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:mon.smithi169 smithi169 running (2m) 74s ago 2m 67.6M 2048M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 37b785d4442a 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:node-exporter.smithi017 smithi017 *:9100 running (3m) 70s ago 3m 25.5M - 1.3.1 1dbe0e931976 2de5afff3345 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:node-exporter.smithi169 smithi169 *:9100 running (2m) 74s ago 2m 24.0M - 1.3.1 1dbe0e931976 7fea4da7713b 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.0 smithi169 running (104s) 74s ago 104s 33.3M 4004M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 04ae7f90da05 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.1 smithi017 running (99s) 70s ago 99s 34.7M 3237M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 c93e240536b4 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.2 smithi169 running (100s) 74s ago 100s 33.2M 4004M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 94fa05d8df7f 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.3 smithi017 running (94s) 70s ago 93s 30.9M 3237M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 dbd13ac1f03e 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.4 smithi169 running (95s) 74s ago 95s 31.6M 4004M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 440db26667fb 2023-12-06T03:53:50.222 INFO:teuthology.orchestra.run.smithi017.stdout:osd.5 smithi017 running (87s) 70s ago 87s 32.1M 3237M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 cf66a3b36438 2023-12-06T03:53:50.223 INFO:teuthology.orchestra.run.smithi017.stdout:osd.6 smithi169 running (91s) 74s ago 91s 29.5M 4004M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 0378b2e10d85 2023-12-06T03:53:50.223 INFO:teuthology.orchestra.run.smithi017.stdout:osd.7 smithi017 running (82s) 70s ago 81s 29.1M 3237M 16.2.14-335-gd03fca4f f9c9e8cc8fe8 1aa1e6d1a761 2023-12-06T03:53:50.223 INFO:teuthology.orchestra.run.smithi017.stdout:prometheus.smithi017 smithi017 *:9095 running (2m) 70s ago 3m 45.7M - 2.33.4 514e6a882f6e e084e8edc393 2023-12-06T03:53:50.631 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch ls' 2023-12-06T03:53:51.019 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:50 smithi169 conmon[87179]: cluster 2023-12-06T03:53:49.520668+0000 mgr.smithi017.mljnlu (mgr.14180) 154 : cluster 2023-12-06T03:53:51.019 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:50 smithi169 conmon[87179]: [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:50 smithi017 conmon[82019]: cluster 2023-12-06T03:53:49.520668+0000 mgr.smithi017.mljnlu (mgr.14180) 154 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:52.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:51 smithi017 conmon[82019]: audit 2023-12-06T03:53:50.209945+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:53:52.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:51 smithi017 conmon[82019]: .14180) 155 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:51 smithi169 conmon[87179]: audit 2023-12-06T03:53:50.209945+0000 mgr.smithi017.mljnlu (mgr.14180) 155 : audit [DBG] 2023-12-06T03:53:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:51 smithi169 conmon[87179]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:52.554 INFO:teuthology.orchestra.run.smithi017.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2023-12-06T03:53:52.554 INFO:teuthology.orchestra.run.smithi017.stdout:alertmanager ?:9093,9094 1/1 72s ago 4m count:1 2023-12-06T03:53:52.554 INFO:teuthology.orchestra.run.smithi017.stdout:crash 2/2 76s ago 4m * 2023-12-06T03:53:52.554 INFO:teuthology.orchestra.run.smithi017.stdout:grafana ?:3000 1/1 72s ago 4m count:1 2023-12-06T03:53:52.554 INFO:teuthology.orchestra.run.smithi017.stdout:mgr 2/2 76s ago 4m count:2 2023-12-06T03:53:52.555 INFO:teuthology.orchestra.run.smithi017.stdout:mon 2/2 76s ago 3m smithi017:172.21.15.17=smithi017;smithi169:172.21.15.169=smithi169;count:2 2023-12-06T03:53:52.555 INFO:teuthology.orchestra.run.smithi017.stdout:node-exporter ?:9100 2/2 76s ago 4m * 2023-12-06T03:53:52.555 INFO:teuthology.orchestra.run.smithi017.stdout:osd.all-available-devices 8 76s ago 2m * 2023-12-06T03:53:52.555 INFO:teuthology.orchestra.run.smithi017.stdout:prometheus ?:9095 1/1 72s ago 4m count:1 2023-12-06T03:53:53.065 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:52 smithi017 conmon[82019]: cluster 2023-12-06T03:53:51.520921+0000 mgr.smithi017.mljnlu (mgr.14180) 156 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:53.078 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch host ls' 2023-12-06T03:53:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:52 smithi169 conmon[87179]: cluster 2023-12-06T03:53:51.520921+0000 mgr.smithi017.mljnlu (mgr.14180) 156 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:54.016 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:53 smithi017 conmon[82019]: audit 2023-12-06T03:53:52.549779+0000 mgr.smithi017.mljnlu (mgr.14180) 157 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:53 smithi169 conmon[87179]: audit 2023-12-06T03:53:52.549779+0000 mgr.smithi017.mljnlu (mgr.14180) 157 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:54.907 INFO:teuthology.orchestra.run.smithi017.stdout:HOST ADDR LABELS STATUS 2023-12-06T03:53:54.907 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 172.21.15.17 2023-12-06T03:53:54.908 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 172.21.15.169 2023-12-06T03:53:54.908 INFO:teuthology.orchestra.run.smithi017.stdout:2 hosts in cluster 2023-12-06T03:53:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:54 smithi017 conmon[82019]: cluster 2023-12-06T03:53:53 2023-12-06T03:53:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:54 smithi017 conmon[82019]: .521408+0000 mgr.smithi017.mljnlu (mgr.14180) 158 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:54 smithi017 conmon[82019]: audit 2023-12-06T03:53:54.500292+0000 mon.smithi017 (mon.0) 589 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:53:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:54 smithi169 conmon[87179]: cluster 2023-12-06T03:53:53.521408+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:53:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:54 smithi169 conmon[87179]: 158 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:54 smithi169 conmon[87179]: audit 2023-12-06T03:53:54.500292+0000 mon.smithi017 (mon.0) 589 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:53:55.323 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch device ls' 2023-12-06T03:53:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:55 smithi017 conmon[82019]: audit 2023-12-06T03:53:54.906466+0000 mgr.smithi017.mljnlu (mgr.14180) 159 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:55 smithi169 conmon[87179]: audit 2023-12-06T03:53:54.906466+0000 mgr.smithi017.mljnlu (mgr.14180) 159 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:56.872 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:56 smithi017 conmon[82019]: cluster 2023-12-06T03:53:55.521698 2023-12-06T03:53:56.873 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:56 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 160 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:56 smithi169 conmon[87179]: cluster 2023-12-06T03:53:55.521698+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:53:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:56 smithi169 conmon[87179]: .14180) 160 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB7473003Q480DGN 447G 74s ago LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme1n1 ssd Linux_18ca1c998c9486d23bec 89.4G 74s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme2n1 ssd Linux_2f836b03270a29297a55 89.4G 74s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme3n1 ssd Linux_ae31564f6d192d3fa4ec 89.4G 74s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme4n1 ssd Linux_0fabc1b5aae34d0a45bc 89.4G 74s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300LN400BGN 372G 78s ago LVM detected, locked 2023-12-06T03:53:57.727 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme1n1 ssd Linux_f1ca633924a5769bd72b 89.4G 78s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.728 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme2n1 ssd Linux_d2b7e0eaf111e651e623 89.4G 78s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.728 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme3n1 ssd Linux_678ffb5836125fe1533f 89.4G 78s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:57.728 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme4n1 ssd Linux_532a217b5c3c7cd8e869 89.4G 78s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:53:58.435 INFO:teuthology.run_tasks:Running task vip... 2023-12-06T03:53:58.443 INFO:tasks.vip:Allocating static IPs for each host... 2023-12-06T03:53:58.443 INFO:tasks.vip:peername 172.21.15.17 2023-12-06T03:53:58.446 INFO:tasks.vip:172.21.15.17 in 172.21.0.0/20, pos 3856 2023-12-06T03:53:58.451 INFO:tasks.vip:smithi017.front.sepia.ceph.com static 10.0.15.17, vnet 10.0.0.0/16 2023-12-06T03:53:58.451 INFO:tasks.vip:VIPs are {map(str, vips)} 2023-12-06T03:53:58.452 DEBUG:teuthology.orchestra.run.smithi017:> sudo ip route ls 2023-12-06T03:53:58.478 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:58 smithi017 conmon[82019]: audit 2023-12-06T03:53:57. 2023-12-06T03:53:58.478 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:58 smithi017 conmon[82019]: 207468+0000 mon.smithi017 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:53:58.478 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:58 smithi017 conmon[82019]: cluster 2023-12-06T03:53:57.521997+0000 mgr.smithi017.mljnlu (mgr.14180) 161 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:58.478 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:53:58 smithi017 conmon[82019]: audit 2023-12-06T03:53:57.723872+0000 mgr.smithi017.mljnlu (mgr.14180) 162 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:58.481 INFO:teuthology.orchestra.run.smithi017.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp metric 100 2023-12-06T03:53:58.481 INFO:teuthology.orchestra.run.smithi017.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.17 metric 100 2023-12-06T03:53:58.482 INFO:tasks.vip:Configuring 10.0.15.17 on smithi017.front.sepia.ceph.com iface ens1f0... 2023-12-06T03:53:58.482 DEBUG:teuthology.orchestra.run.smithi017:> sudo ip addr add 10.0.15.17/16 dev ens1f0 2023-12-06T03:53:58.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:58 smithi169 conmon[87179]: audit 2023-12-06T03:53:57.207468+0000 mon.smithi017 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:53:58.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:58 smithi169 conmon[87179]: cluster 2023-12-06T03:53:57.521997+0000 mgr.smithi017.mljnlu (mgr.14180) 161 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:53:58.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:53:58 smithi169 conmon[87179]: audit 2023-12-06T03:53:57.723872+0000 mgr.smithi017.mljnlu (mgr.14180) 162 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:53:58.548 INFO:tasks.vip:peername 172.21.15.169 2023-12-06T03:53:58.551 INFO:tasks.vip:172.21.15.169 in 172.21.0.0/20, pos 4008 2023-12-06T03:53:58.555 INFO:tasks.vip:smithi169.front.sepia.ceph.com static 10.0.15.169, vnet 10.0.0.0/16 2023-12-06T03:53:58.555 DEBUG:teuthology.orchestra.run.smithi169:> sudo ip route ls 2023-12-06T03:53:58.586 INFO:teuthology.orchestra.run.smithi169.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp metric 100 2023-12-06T03:53:58.586 INFO:teuthology.orchestra.run.smithi169.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.169 metric 100 2023-12-06T03:53:58.587 INFO:tasks.vip:Configuring 10.0.15.169 on smithi169.front.sepia.ceph.com iface enp3s0f1... 2023-12-06T03:53:58.587 DEBUG:teuthology.orchestra.run.smithi169:> sudo ip addr add 10.0.15.169/16 dev enp3s0f1 2023-12-06T03:53:58.653 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-06T03:53:58.663 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:53:58.663 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme0n1 ssd INTEL SSDPED1D480GA_PHMB7473003Q480DGN 447G 77s ago LVM detected, locked 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme1n1 ssd Linux_18ca1c998c9486d23bec 89.4G 77s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme2n1 ssd Linux_2f836b03270a29297a55 89.4G 77s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme3n1 ssd Linux_ae31564f6d192d3fa4ec 89.4G 77s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi017 /dev/nvme4n1 ssd Linux_0fabc1b5aae34d0a45bc 89.4G 77s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.690 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300LN400BGN 372G 81s ago LVM detected, locked 2023-12-06T03:54:00.691 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme1n1 ssd Linux_f1ca633924a5769bd72b 89.4G 81s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.691 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme2n1 ssd Linux_d2b7e0eaf111e651e623 89.4G 81s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.691 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme3n1 ssd Linux_678ffb5836125fe1533f 89.4G 81s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.691 INFO:teuthology.orchestra.run.smithi017.stdout:smithi169 /dev/nvme4n1 ssd Linux_532a217b5c3c7cd8e869 89.4G 81s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-06T03:54:00.872 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:00 smithi017 conmon[82019]: cluster 2023-12-06T03:53:59.522361+0000 mgr.smithi017.mljnlu (mgr.14180) 163 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:00 smithi169 conmon[87179]: cluster 2023-12-06T03:53:59.522361+0000 mgr.smithi017.mljnlu (mgr.14180) 163 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:00 smithi169 conmon[87179]: 2023-12-06T03:54:01.161 INFO:teuthology.run_tasks:Running task vip.exec... 2023-12-06T03:54:01.171 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:54:01.171 DEBUG:teuthology.orchestra.run.smithi017:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-12-06T03:54:01.201 INFO:teuthology.orchestra.run.smithi017.stderr:+ systemctl stop nfs-server 2023-12-06T03:54:01.208 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi169.front.sepia.ceph.com 2023-12-06T03:54:01.208 DEBUG:teuthology.orchestra.run.smithi169:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-12-06T03:54:01.238 INFO:teuthology.orchestra.run.smithi169.stderr:+ systemctl stop nfs-server 2023-12-06T03:54:01.246 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-06T03:54:01.255 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:54:01.255 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2023-12-06T03:54:02.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:01 smithi017 conmon[82019]: audit 2023-12-06T03:54:00.686674+0000 2023-12-06T03:54:02.047 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:01 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 164 : audit [DBG] from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:02.048 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:01 smithi017 conmon[82019]: audit 2023-12-06T03:54:00.794015+0000 mon.smithi017 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:01 smithi169 conmon[87179]: audit 2023-12-06T03:54:00.686674+0000 mgr.smithi017.mljnlu (mgr.14180) 164 : audit [DBG] from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:01 smithi169 conmon[87179]: audit 2023-12-06T03:54:00.794015+0000 mon.smithi017 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:02.982 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:02 smithi017 conmon[82019]: cluster 2023-12-06T03:54:01.522702 2023-12-06T03:54:02.982 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:02 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 165 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:02 smithi169 conmon[87179]: cluster 2023-12-06T03:54:01.522702+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:54:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:02 smithi169 conmon[87179]: 165 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:03.763 INFO:teuthology.orchestra.run.smithi017.stdout:Scheduled rgw.foorgw update... 2023-12-06T03:54:04.214 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.17/16' 2023-12-06T03:54:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:04 smithi017 conmon[82019]: cluster 2023-12-06T03:54:03.523012+0000 mgr.smithi017.mljnlu (mgr.14180) 166 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:04 smithi017 conmon[82019]: audit 2023-12-06T03:54:03.757326+0000 mgr.smithi017.mljnlu (mgr.14180) 167 : audit [DBG] from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:04 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:03.758428+0000 mgr.smithi017.mljnlu (mgr.14180) 168 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-12-06T03:54:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:04 smithi017 conmon[82019]: audit 2023-12-06T03:54:03.761565+0000 mon.smithi017 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:04 smithi169 conmon[87179]: cluster 2023-12-06T03:54:03.523012+0000 mgr.smithi017.mljnlu (mgr.14180) 166 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:04 smithi169 conmon[87179]: 2023-12-06T03:54:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:04 smithi169 conmon[87179]: audit 2023-12-06T03:54:03.757326+0000 mgr.smithi017.mljnlu (mgr.14180) 167 : audit [DBG] from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:04 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:03.758428+0000 mgr.smithi017.mljnlu (mgr.14180) 168 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-12-06T03:54:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:04 smithi169 conmon[87179]: audit 2023-12-06T03:54:03.761565+0000 mon.smithi017 (mon.0) 592 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12-06T03:54:04.926984+0000 mon.smithi017 (mon.0) 593 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12-06T03:54:05.489768+0000 mon.smithi017 (mon.0) 594 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: 06T03:54:05.490453+0000 mon.smithi017 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: 06T03:54:05.494525+0000 mon.smithi017 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12-06T03:54:05.498058+0000 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: mon.smithi017 (mon.0) 597 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12-06T03:54:05. 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: 501527+0000 mon.smithi017 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:05 smithi169 conmon[87179]: :05.502056+0000 mon.smithi017 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:04.926984+0000 mon.smithi017 (mon.0) 593 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:05.489768+0000 mon.smithi017 (mon.0) 594 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:05.490453+0000 mon.smithi017 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:05.494525+0000 mon.smithi017 (mon.0) 596 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: 54:05.498058+0000 mon.smithi017 (mon.0) 597 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:05.501527+0000 mon.smithi017 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-06T03:54:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:05 smithi017 conmon[82019]: audit 2023-12-06T03:54:05.502056+0000 mon.smithi017 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:06 smithi169 conmon[87179]: cluster 2023-12-06T03:54:05.523359+0000 mgr.smithi017.mljnlu (mgr.14180) 169 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:07.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:06 smithi169 conmon[87179]: audit 2023-12-06T03:54:06.008961+0000 mon.smithi017 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-12-06T03:54:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:06 smithi017 conmon[82019]: cluster 2023-12-06T03:54:05.523359+0000 mgr.smithi017.mljnlu (mgr.14180) 169 : cluster [DBG] 2023-12-06T03:54:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:06 smithi017 conmon[82019]: pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:06 smithi017 conmon[82019]: audit 2023-12-06T03:54:06.008961+0000 mon.smithi017 (mon.0) 600 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-12-06T03:54:07.977 INFO:teuthology.orchestra.run.smithi017.stdout:NFS Cluster Created Successfully 2023-12-06T03:54:08.188 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: audit 2023-12-06T03:54:06.007760+0000 mgr.smithi017.mljnlu 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: (mgr.14180) 170 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.17/16", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: audit 2023-12-06T03:54:06.933510+0000 mon.smithi017 (mon. 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: 0) 601 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: cluster 2023-12-06T03:54 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: :06.933567+0000 mon.smithi017 (mon.0) 602 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: audit 2023-12-06T03: 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: 54:06.936707+0000 mon.smithi017 (mon.0) 603 : audit 2023-12-06T03:54:08.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:07 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-12-06T03:54:08.199 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:07 smithi169 conmon[87179]: audit 2023-12-06T03:54:06.007760+0000 mgr.smithi017.mljnlu (mgr.14180) 170 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.17/16", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:08.199 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:07 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:08.199 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:07 smithi169 conmon[87179]: :06.933510+0000 mon.smithi017 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-12-06T03:54:08.199 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:07 smithi169 conmon[87179]: cluster 2023-12-06T03:54:06.933567+0000 mon.smithi017 (mon.0) 602 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2023-12-06T03:54:08.199 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:07 smithi169 conmon[87179]: audit 2023-12-06T03:54:06.936707+0000 mon.smithi017 (mon.0) 603 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-12-06T03:54:08.399 INFO:teuthology.run_tasks:Running task vip.exec... 2023-12-06T03:54:08.409 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:54:08.409 DEBUG:teuthology.orchestra.run.smithi017:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2023-12-06T03:54:08.438 INFO:teuthology.orchestra.run.smithi017.stderr:+ dnf install -y python3-boto3 2023-12-06T03:54:08.801 INFO:teuthology.orchestra.run.smithi017.stdout:Updating Subscription Management repositories. 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: cluster 2023-12-06T03:54:07. 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: 523718+0000 mgr.smithi017.mljnlu (mgr.14180) 171 : cluster [DBG] pgmap v141: 33 pgs: 7 creating+peering, 1 active+clean, 25 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: audit 2023-12-06T03:54:07.939182+0000 mon.smithi017 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: cluster 2023-12-06T03:54:07.939451+0000 mon.smithi017 (mon.0) 605 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:07.967982+0000 mgr.smithi017.mljnlu (mgr.14180) 172 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: audit 2023-12-06T03:54:07.971581+0000 mon.smithi017 (mon.0) 606 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:07.972940+0000 mgr.smithi017.mljnlu (mgr.14180) 173 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-12-06T03:54:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:08 smithi169 conmon[87179]: audit 2023-12-06T03:54:07.975711+0000 mon.smithi017 (mon.0) 607 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: cluster 2023-12-06T03:54:07.523718+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: 14180) 171 : cluster [DBG] pgmap v141: 33 pgs: 7 creating+peering, 1 active+clean, 25 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: audit 2023-12-06T03:54:07.939182+0000 mon.smithi017 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: cluster 2023-12-06T03:54:07.939451+0000 mon.smithi017 (mon.0) 605 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:07.967982+0000 mgr.smithi017.mljnlu (mgr.14180) 172 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: audit 2023-12-06T03:54:07.971581+0000 mon.smithi017 (mon.0) 606 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:07.972940+0000 mgr.smithi017.mljnlu (mgr.14180) 173 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-12-06T03:54:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:08 smithi017 conmon[82019]: audit 2023-12-06T03:54:07.975711+0000 mon.smithi017 (mon.0) 607 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:10.092 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 89 kB/s | 4.1 kB 00:00 2023-12-06T03:54:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:09 smithi169 conmon[87179]: cluster 2023-12-06T03:54:08.942458+0000 mon.smithi017 (mon.0) 608 : 2023-12-06T03:54:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:09 smithi169 conmon[87179]: cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-12-06T03:54:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:09 smithi169 conmon[87179]: cluster 2023-12-06T03:54:08.981239+0000 mon.smithi017 (mon.0) 609 : cluster [DBG] mgrmap e19: smithi017.mljnlu(active, since 3m), standbys: smithi169.rlrcud 2023-12-06T03:54:10.266 INFO:teuthology.orchestra.run.smithi017.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 78 kB/s | 4.5 kB 00:00 2023-12-06T03:54:10.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:09 smithi017 conmon[82019]: cluster 2023-12-06T03:54:08.942458+0000 mon.smithi017 (mon 2023-12-06T03:54:10.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:09 smithi017 conmon[82019]: .0) 608 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-12-06T03:54:10.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:09 smithi017 conmon[82019]: cluster 2023-12-06T03:54:08.981239+0000 mon.smithi017 (mon.0) 609 : cluster [DBG] mgrmap e19: smithi017.mljnlu(active, since 3m), standbys: smithi169.rlrcud 2023-12-06T03:54:10.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:09 smithi017 conmon[82019]: 2023-12-06T03:54:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:10 smithi169 conmon[87179]: cluster 2023-12-06T03:54:09.524180+0000 mgr.smithi017.mljnlu (mgr.14180) 174 : cluster [DBG] pgmap v144: 33 pgs: 11 active+clean, 9 creating+peering, 13 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:11.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:10 smithi017 conmon[82019]: cluster 2023-12-06T03:54:09.524180+0000 mgr.smithi017.mljnlu 2023-12-06T03:54:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:10 smithi017 conmon[82019]: (mgr.14180) 174 : cluster [DBG] pgmap v144: 33 pgs: 11 active+clean, 9 creating+peering, 13 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:12.263 INFO:teuthology.orchestra.run.smithi017.stdout:Dependencies resolved. 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout: Package Arch Version Repository Size 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout:Installing: 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout: python3-boto3 noarch 1.15.15-1.el8 epel 152 k 2023-12-06T03:54:12.264 INFO:teuthology.orchestra.run.smithi017.stdout:Installing dependencies: 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout: python3-botocore noarch 1.18.15-1.el8 epel 4.5 M 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout: python3-jmespath noarch 0.9.0-11.el8 rhel-8-for-x86_64-appstream-rpms 45 k 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout: python3-s3transfer noarch 0.3.4-1.el8 epel 108 k 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction Summary 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout:================================================================================ 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout:Install 4 Packages 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:12.265 INFO:teuthology.orchestra.run.smithi017.stdout:Total download size: 4.8 M 2023-12-06T03:54:12.266 INFO:teuthology.orchestra.run.smithi017.stdout:Installed size: 49 M 2023-12-06T03:54:12.266 INFO:teuthology.orchestra.run.smithi017.stdout:Downloading Packages: 2023-12-06T03:54:12.977 INFO:teuthology.orchestra.run.smithi017.stdout:(1/4): python3-s3transfer-0.3.4-1.el8.noarch.rp 191 kB/s | 108 kB 00:00 2023-12-06T03:54:12.987 INFO:teuthology.orchestra.run.smithi017.stdout:(2/4): python3-boto3-1.15.15-1.el8.noarch.rpm 265 kB/s | 152 kB 00:00 2023-12-06T03:54:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:12 smithi169 conmon[87179]: cluster 2023-12-06T03:54:11.524555+0000 mgr.smithi017.mljnlu (mgr.14180) 175 : cluster [DBG] 2023-12-06T03:54:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:12 smithi169 conmon[87179]: pgmap v145: 33 pgs: 24 active+clean, 9 creating+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:13.285 INFO:teuthology.orchestra.run.smithi017.stdout:(3/4): python3-jmespath-0.9.0-11.el8.noarch.rpm 146 kB/s | 45 kB 00:00 2023-12-06T03:54:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:12 smithi017 conmon[82019]: cluster 2023-12-06T03:54:11.524555+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:54:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:12 smithi017 conmon[82019]: ) 175 : cluster [DBG] pgmap v145: 33 pgs: 24 active+clean, 9 creating+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:13.416 INFO:teuthology.orchestra.run.smithi017.stdout:(4/4): python3-botocore-1.18.15-1.el8.noarch.rp 4.4 MB/s | 4.5 MB 00:01 2023-12-06T03:54:13.420 INFO:teuthology.orchestra.run.smithi017.stdout:-------------------------------------------------------------------------------- 2023-12-06T03:54:13.421 INFO:teuthology.orchestra.run.smithi017.stdout:Total 4.1 MB/s | 4.8 MB 00:01 2023-12-06T03:54:13.423 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction check 2023-12-06T03:54:13.431 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction check succeeded. 2023-12-06T03:54:13.431 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction test 2023-12-06T03:54:13.619 INFO:teuthology.orchestra.run.smithi017.stdout:Transaction test succeeded. 2023-12-06T03:54:13.624 INFO:teuthology.orchestra.run.smithi017.stdout:Running transaction 2023-12-06T03:54:13.887 INFO:teuthology.orchestra.run.smithi017.stdout: Preparing : 1/1 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.342357+0000 mon.smithi017 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:13.343985+0000 mgr.smithi017.mljnlu (mgr.14180) 176 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.346777+0000 mon.smithi017 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.347455+0000 mon.smithi017 (mon.0) 612 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi169.sfqslp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.350253+0000 mon.smithi017 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi169.sfqslp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.354193+0000 mon.smithi017 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: audit 2023-12-06T03:54:13.354937+0000 mon.smithi017 (mon.0) 615 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:13.355686+0000 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 177 : cephadm [INF] Deploying daemon rgw.foorgw.smithi169.sfqslp on smithi169 2023-12-06T03:54:14.609 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:14 smithi169 conmon[87179]: cluster 2023-12-06T03:54:13.524935+0000 mgr.smithi017.mljnlu (mgr.14180) 178 : cluster [DBG] pgmap v146: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12-06T03:54:13. 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 342357+0000 mon.smithi017 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: cephadm 2023-12-06T03 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: :54:13.343985+0000 mgr.smithi017.mljnlu (mgr.14180) 176 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12-06T03:54:13. 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 346777+0000 mon.smithi017 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12-06T03:54 2023-12-06T03:54:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: :13.347455+0000 mon.smithi017 (mon.0) 612 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi169.sfqslp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12-06T 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 03:54:13.350253+0000 mon.smithi017 (mon.0) 613 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi169.sfqslp", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: T03:54:13.354193+0000 mon.smithi017 (mon.0) 614 : audit [INF] 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: audit 2023-12 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: -06T03:54:13.354937+0000 mon.smithi017 (mon.0) 615 : audit 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 2023-12-06T03:54:13.355686+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: ) 177 : cephadm [INF] Deploying daemon rgw.foorgw.smithi169.sfqslp on smithi169 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: cluster 2023-12- 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: 06T03:54:13.524935+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:54:14.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:14 smithi017 conmon[82019]: ) 178 : cluster [DBG] pgmap v146: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:15.238 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : python3-jmespath-0.9.0-11.el8.noarch 1/4 2023-12-06T03:54:15.533 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : python3-botocore-1.18.15-1.el8.noarch 2/4 2023-12-06T03:54:15.791 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2023-12-06T03:54:16.028 INFO:teuthology.orchestra.run.smithi017.stdout: Installing : python3-boto3-1.15.15-1.el8.noarch 4/4 2023-12-06T03:54:16.278 INFO:teuthology.orchestra.run.smithi017.stdout: Running scriptlet: python3-boto3-1.15.15-1.el8.noarch 4/4 2023-12-06T03:54:16.278 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : python3-boto3-1.15.15-1.el8.noarch 1/4 2023-12-06T03:54:16.279 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : python3-botocore-1.18.15-1.el8.noarch 2/4 2023-12-06T03:54:16.279 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: cluster 2023-12-06T03:54:15.525444+0000 mgr.smithi017.mljnlu (mgr.14180) 179 : cluster [DBG] pgmap v147: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.796234+0000 mon.smithi017 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.797401+0000 mon.smithi017 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi017.wiorko", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.800007+0000 mon.smithi017 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi017.wiorko", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.804367+0000 mon.smithi017 (mon.0) 619 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.805003+0000 mon.smithi017 (mon.0) 620 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:15.805543+0000 mgr.smithi017.mljnlu (mgr.14180) 180 : cephadm [INF] Deploying daemon rgw.foorgw.smithi017.wiorko on smithi017 2023-12-06T03:54:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: cluster 2023-12-06T03:54:15.845296+0000 mon.smithi017 (mon.0) 621 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-12-06T03:54:17.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.853664+0000 mon.smithi169 (mon.1) 20 : audit [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-12-06T03:54:17.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:16 smithi017 conmon[82019]: audit 2023-12-06T03:54:15.854332+0000 mon.smithi017 (mon.0) 622 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-12-06T03:54:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: cluster 2023-12-06T03:54:15.525444+0000 mgr.smithi017.mljnlu (mgr.14180) 179 : cluster [DBG] pgmap v147: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.796234+0000 mon.smithi017 (mon.0) 616 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.797401+0000 mon.smithi017 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi017.wiorko", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.800007+0000 mon.smithi017 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi017.wiorko", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.804367+0000 mon.smithi017 (mon.0) 619 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.805003+0000 mon.smithi017 (mon.0) 620 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:15.805543+0000 mgr.smithi017.mljnlu (mgr.14180) 180 : cephadm [INF] Deploying daemon rgw.foorgw.smithi017.wiorko on smithi017 2023-12-06T03:54:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: cluster 2023-12-06T03:54:15.845296+0000 mon.smithi017 (mon.0) 621 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-12-06T03:54:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.853664+0000 mon.smithi169 (mon.1) 20 : audit [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-12-06T03:54:17.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:16 smithi169 conmon[87179]: audit 2023-12-06T03:54:15.854332+0000 mon.smithi017 (mon.0) 622 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-12-06T03:54:18.177 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:17 smithi017 conmon[82019]: audit 2023-12-06T03:54:16.847331 2023-12-06T03:54:18.177 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:17 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 623 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2023-12-06T03:54:18.177 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:17 smithi017 conmon[82019]: cluster 2023-12-06T03:54:16.847397+0000 mon.smithi017 (mon.0) 624 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-12-06T03:54:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:17 smithi169 conmon[87179]: audit 2023-12-06T03:54:16.847331+0000 mon.smithi017 ( 2023-12-06T03:54:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:17 smithi169 conmon[87179]: mon.0) 623 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2023-12-06T03:54:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:17 smithi169 conmon[87179]: cluster 2023-12-06T03:54:16.847397+0000 mon.smithi017 (mon.0) 624 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-12-06T03:54:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:17 smithi169 conmon[87179]: 2023-12-06T03:54:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: cluster 2023-12-06T03:54:17.525864+0000 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 181 : cluster [DBG] pgmap v150: 65 pgs: 5 creating+peering, 22 unknown, 38 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: cluster 2023-12-06T03:54:17.852718+0000 mon.smithi017 (mon.0) 625 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: audit 2023-12-06T03:54:17.856728+0000 mon.smithi169 (mon.1) 21 : audit [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: audit 2023-12-06T03:54:17.857178+0000 mon.smithi017 (mon.0) 626 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: audit 2023-12-06T03:54:18.304329+0000 mon.smithi017 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:19.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:18 smithi169 conmon[87179]: audit 2023-12-06T03:54:18.305615+0000 mon.smithi017 (mon.0) 628 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:54:19.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: cluster 2023-12-06T03:54:17.525864+0000 mgr.smithi017.mljnlu (mgr.14180) 181 : cluster [DBG] pgmap v150: 65 pgs: 5 creating+peering, 22 unknown, 38 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-06T03:54:19.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: cluster 2023-12-06T03:54:17.852718+0000 mon.smithi017 (mon.0) 625 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-12-06T03:54:19.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: audit 2023-12-06T03:54:17.856728+0000 mon.smithi169 (mon.1) 21 : audit [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-12-06T03:54:19.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: audit 2023-12-06T03:54:17.857178+0000 mon.smithi017 (mon.0) 626 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-12-06T03:54:19.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: audit 2023-12-06T03:54:18.304329+0000 mon.smithi017 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:19.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:18 smithi017 conmon[82019]: audit 2023-12-06T03:54:18.305615+0000 mon.smithi017 (mon.0) 628 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:54:20.038 INFO:teuthology.orchestra.run.smithi017.stdout: Verifying : python3-jmespath-0.9.0-11.el8.noarch 4/4 2023-12-06T03:54:20.038 INFO:teuthology.orchestra.run.smithi017.stdout:Installed products updated. 2023-12-06T03:54:20.155 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:20.156 INFO:teuthology.orchestra.run.smithi017.stdout:Installed: 2023-12-06T03:54:20.156 INFO:teuthology.orchestra.run.smithi017.stdout: python3-boto3-1.15.15-1.el8.noarch python3-botocore-1.18.15-1.el8.noarch 2023-12-06T03:54:20.156 INFO:teuthology.orchestra.run.smithi017.stdout: python3-jmespath-0.9.0-11.el8.noarch python3-s3transfer-0.3.4-1.el8.noarch 2023-12-06T03:54:20.156 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:20.156 INFO:teuthology.orchestra.run.smithi017.stdout:Complete! 2023-12-06T03:54:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:19 smithi169 conmon[87179]: audit 2023-12-06T03:54:18.853618+0000 mon.smithi017 ( 2023-12-06T03:54:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:19 smithi169 conmon[87179]: mon.0) 629 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2023-12-06T03:54:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:19 smithi169 conmon[87179]: cluster 2023-12-06T03:54:18.853802+0000 mon.smithi017 (mon.0) 630 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-12-06T03:54:20.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:19 smithi017 conmon[82019]: audit 2023-12-06T03:54:18.853618+0000 mon.smithi017 (mon.0) 629 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2023-12-06T03:54:20.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:19 smithi017 conmon[82019]: cluster 2023-12-06T03:54:18.853802+0000 mon.smithi017 (mon.0) 630 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-12-06T03:54:20.325 DEBUG:teuthology.orchestra.run.smithi017:> 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-12-06T03:54:20.390 INFO:teuthology.orchestra.run.smithi017.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2023-12-06T03:54:20.973 INFO:teuthology.orchestra.run.smithi017.stderr:Inferring fsid 419dd438-93ea-11ee-95a2-87774f69a715 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: cluster 2023-12-06T03:54:19.526194+0000 mgr.smithi017.mljnlu (mgr.14180) 182 : 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: cluster [DBG] pgmap v153: 97 pgs: 12 creating+peering, 30 unknown, 55 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 767 B/s wr, 2 op/s 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: cluster 2023-12-06T03:54:19.867453+0000 mon.smithi017 (mon.0) 631 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: audit 2023-12-06T03:54: 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: 19.869791+0000 mon.smithi169 (mon.1) 22 : audit 2023-12-06T03:54:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: :54:19.870177+0000 mon.smithi017 (mon.0) 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: 632 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: :19.870629+0000 mon.smithi017 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:20 smithi169 conmon[87179]: 2023-12-06T03:54:21.264 INFO:teuthology.orchestra.run.smithi017.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:5b1065ec45c86c69b73c0daaab636bd94357f40fecb52ce6743f16cf12be03ee 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: cluster 2023-12-06T03:54:19.526194 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 182 : cluster [DBG] pgmap v153: 97 pgs: 12 creating+peering, 30 unknown, 55 active+clean; 965 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 767 B/s wr, 2 op/s 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: cluster 2023-12-06T03:54:19.867453+0000 mon.smithi017 (mon.0) 631 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: audit 2023-12-06T03:54:19.869791+0000 mon.smithi169 (mon.1) 22 : audit [INF] from='client.? 172.21.15.169:0/25774902' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: audit 2023-12-06T03:54:19.870177+0000 mon.smithi017 (mon.0) 632 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:20 smithi017 conmon[82019]: audit 2023-12-06T03:54:19.870629+0000 mon.smithi017 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-12-06T03:54:22.052 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:21 smithi017 conmon[82019]: audit 2023-12-06T03:54:20.872337+0000 mon.smithi017 (mon.0) 634 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-12-06T03:54:22.053 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:21 smithi017 conmon[82019]: audit 2023-12-06T03:54:20.872422+0000 mon.smithi017 (mon.0) 635 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-12-06T03:54:22.053 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:21 smithi017 conmon[82019]: cluster 2023-12-06T03:54:20.872625+0000 mon.smithi017 (mon.0) 636 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-12-06T03:54:22.053 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:21 smithi017 conmon[82019]: audit 2023-12-06T03:54:21.393214+0000 mon.smithi017 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:22.053 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:21 smithi017 conmon[82019]: audit 2023-12-06T03:54:21.835345+0000 mon.smithi017 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:22.172 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:21 smithi169 conmon[87179]: audit 2023-12-06T03:54:20.872337+0000 mon.smithi017 (mon.0) 634 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-12-06T03:54:22.172 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:21 smithi169 conmon[87179]: audit 2023-12-06T03:54:20.872422+0000 mon.smithi017 (mon.0) 635 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-12-06T03:54:22.172 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:21 smithi169 conmon[87179]: cluster 2023-12-06T03:54:20.872625+0000 mon.smithi017 (mon.0) 636 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-12-06T03:54:22.172 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:21 smithi169 conmon[87179]: audit 2023-12-06T03:54:21.393214+0000 mon.smithi017 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:22.172 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:21 smithi169 conmon[87179]: audit 2023-12-06T03:54:21.835345+0000 mon.smithi017 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: cluster 2023-12-06T03:54:21.526729+0000 mgr.smithi017.mljnlu (mgr.14180) 183 : cluster [DBG] pgmap v156: 129 pgs: 11 creating+peering, 34 unknown, 84 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.2 KiB/s wr, 4 op/s 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: cluster 2023-12-06T03:54:21.873235+0000 mon.smithi017 (mon.0) 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: 639 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: audit 2023-12-06T03:54:21.874240+0000 mon.smithi017 (mon.0) 640 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: audit 2023-12-06T03:54:21.883299+0000 mon.smithi169 (mon.1) 23 : audit [INF] from='client.? 172.21.15.169:0/2557243368' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: audit 2023-12-06T03:54:21.888083+0000 mon.smithi017 (mon.0) 641 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: audit 2023-12-06T03:54:22.874944+0000 mon.smithi017 (mon.0) 642 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: audit 2023-12-06T03:54:22.875164+0000 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: mon.smithi017 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: cluster 2023-12-06T03:54:22.875296+0000 mon.smithi017 ( 2023-12-06T03:54:23.228 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:22 smithi017 conmon[82019]: mon.0) 644 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-12-06T03:54:23.233 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: cluster 2023-12-06T03:54:21.526729+0000 mgr.smithi017.mljnlu (mgr.14180) 183 : cluster [DBG] pgmap v156: 129 pgs: 11 creating+peering, 34 unknown, 84 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.2 KiB/s wr, 4 op/s 2023-12-06T03:54:23.233 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: cluster 2023-12-06T03:54:21.873235+0000 mon.smithi017 (mon.0) 639 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-12-06T03:54:23.233 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: audit 2023-12-06T03:54:21.874240+0000 mon.smithi017 (mon.0) 640 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.234 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: audit 2023-12-06T03:54:21.883299+0000 mon.smithi169 (mon.1) 23 : audit [INF] from='client.? 172.21.15.169:0/2557243368' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.234 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: audit 2023-12-06T03:54:21.888083+0000 mon.smithi017 (mon.0) 641 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-12-06T03:54:23.234 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: audit 2023-12-06T03:54:22.874944+0000 mon.smithi017 (mon.0) 642 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-12-06T03:54:23.234 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: audit 2023-12-06T03:54:22.875164+0000 mon.smithi017 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-12-06T03:54:23.234 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:22 smithi169 conmon[87179]: cluster 2023-12-06T03:54:22.875296+0000 mon.smithi017 (mon.0) 644 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-12-06T03:54:23.492 INFO:teuthology.run_tasks:Running task python... 2023-12-06T03:54:23.516 INFO:tasks.python:Running python on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:54:23.516 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-12-06T03:54:23.516 DEBUG:teuthology.orchestra.run.smithi017:> sudo TESTDIR=/home/ubuntu/cephtest python3 2023-12-06T03:54:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: audit 2023-12-06T03:54:22.877401+0000 mon.smithi169 (mon.1) 24 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: : audit [INF] from='client.? 172.21.15.169:0/2557243368' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: audit 2023-12-06T03:54:22.883797+0000 mon.smithi017 (mon.0) 645 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: audit 2023-12-06T03:54:22.884062+0000 mon.smithi017 (mon.0) 646 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: audit 2023-12-06T03:54:23.876458+0000 mon.smithi017 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: audit 2023-12-06T03:54:23.876567+0000 mon.smithi017 (mon.0) 648 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:24.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:23 smithi169 conmon[87179]: cluster 2023-12-06T03:54:23.876626+0000 mon.smithi017 (mon.0) 649 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: audit 2023-12-06T03:54:22.877401+0000 mon.smithi169 (mon.1) 24 : audit [INF] from='client.? 172.21.15.169:0/2557243368' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: audit 2023-12-06T03:54:22.883797+0000 mon.smithi017 (mon.0) 645 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: audit 2023-12-06T03:54:22.884062+0000 mon.smithi017 (mon.0) 646 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: audit 2023-12-06T03:54:23.876458+0000 mon.smithi017 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi169.sfqslp' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: audit 2023-12-06T03:54:23.876567+0000 mon.smithi017 (mon.0) 648 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:24.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:23 smithi017 conmon[82019]: cluster 2023-12-06T03:54:23.876626+0000 mon.smithi017 (mon.0) 649 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-12-06T03:54:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:24 smithi169 conmon[87179]: cluster 2023-12-06T03:54:23.527188+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:54:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:24 smithi169 conmon[87179]: 184 : cluster [DBG] pgmap v159: 161 pgs: 12 creating+peering, 21 unknown, 128 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 767 B/s wr, 4 op/s 2023-12-06T03:54:25.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:24 smithi017 conmon[82019]: cluster 2023-12-06T03:54:23.527188+0000 mgr.smithi017.mljnlu (mgr.14180) 184 : cluster 2023-12-06T03:54:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:24 smithi017 conmon[82019]: [DBG] pgmap v159: 161 pgs: 12 creating+peering, 21 unknown, 128 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 767 B/s wr, 4 op/s 2023-12-06T03:54:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cluster 2023-12-06T03:54:25.033135+0000 mon.smithi017 (mon.0) 650 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.035081+0000 mon.smithi017 (mon.0) 651 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.065217+0000 mon.smithi017 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.212618+0000 mon.smithi017 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.213455+0000 mon.smithi017 (mon.0) 654 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.214135+0000 mon.smithi017 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:25.217166+0000 mgr.smithi017.mljnlu (mgr.14180) 185 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.467259+0000 mon.smithi017 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.471944+0000 mon.smithi017 (mon.0) 657 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.476622+0000 mon.smithi017 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.482618+0000 mon.smithi017 (mon.0) 659 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:54:26.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.492018+0000 mon.smithi017 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:25.515893+0000 mgr.smithi017.mljnlu (mgr.14180) 186 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi017.rkywta 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.516199+0000 mon.smithi017 (mon.0) 661 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.519434+0000 mon.smithi017 (mon.0) 662 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:25.519973+0000 mgr.smithi017.mljnlu (mgr.14180) 187 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.520181+0000 mon.smithi017 (mon.0) 663 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.522731+0000 mon.smithi017 (mon.0) 664 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.523813+0000 mon.smithi017 (mon.0) 665 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cluster 2023-12-06T03:54:25.530912+0000 mgr.smithi017.mljnlu (mgr.14180) 188 : cluster [DBG] pgmap v162: 193 pgs: 11 creating+peering, 37 unknown, 145 active+clean; 1.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 32 KiB/s rd, 1.5 KiB/s wr, 59 op/s 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023- 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: 12-06T03:54:25.561139+0000 mon.smithi017 (mon.0) 666 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:25.564625+0000 mon.smithi017 (mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:25 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: .606686+0000 mgr.smithi017.mljnlu (mgr.14180) 189 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: -12-06T03:54:25.606784 2023-12-06T03:54:26.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: ) 190 : cephadm [INF] 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: Creating key for client.nfs.foo.0.0.smithi017.rkywta-rgw 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: 2023-12-06T03:54:25.607202+0000 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: mon.smithi017 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: -12-06T03:54:25.610392+0000 mon.smithi017 ( 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: mon.0) 669 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: audit 2023-12-06T03 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: :54:25.613735+0000 mon.smithi017 (mon.0) 670 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: cephadm 2023-12-06T03:54:25. 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: 614492+0000 mgr.smithi017.mljnlu (mgr.14180) 191 : cephadm [INF] 2023-12-06T03:54:26.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:26 smithi017 conmon[82019]: Deploying daemon nfs.foo.0.0.smithi017.rkywta on smithi017 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cluster 2023-12-06T03:54:25.033135+0000 mon.smithi017 (mon 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: .0) 650 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25.035081+0000 mon.smithi017 (mon.0) 651 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03: 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 54:25.065217+0000 mon.smithi017 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 12-06T03:54:25.212618+0000 mon.smithi017 (mon.0) 653 : audit 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25.213455 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 654 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 2023-12-06T03:54:26.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: -12-06T03:54:25.214135+0000 mon.smithi017 (mon.0) 655 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:25 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: .217166+0000 mgr.smithi017.mljnlu (mgr.14180) 185 : cephadm 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: [INF] Checking dashboard <-> RGW credentials 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25.467259 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 656 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 12-06T03:54:25.471944+0000 mon.smithi017 (mon.0) 657 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25. 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 476622+0000 mon.smithi017 (mon.0) 658 : audit 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25.482618 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 659 : audit [DBG] 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 2023-12-06T03:54:25.492018+0000 mon.smithi017 (mon.0) 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 660 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12-06T03: 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 54:25.515893+0000 mgr.smithi017.mljnlu (mgr.14180) 186 : 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm [INF] Creating key for client.nfs.foo.0.0.smithi017.rkywta 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25. 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 516199+0000 mon.smithi017 (mon.0) 661 : audit [INF] 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 2023-12-06T03:54:25.519434+0000 mon.smithi017 (mon.0) 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 662 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12-06T03:54: 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 25.519973+0000 mgr.smithi017.mljnlu (mgr.14180) 187 : cephadm 2023-12-06T03:54:26.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25. 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 520181+0000 mon.smithi017 (mon.0) 663 : audit [INF] 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 2023-12-06T03:54:25.522731+0000 mon.smithi017 (mon.0) 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 664 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: :25.523813+0000 mon.smithi017 (mon.0) 665 : 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cluster 2023-12-06T03:54:25 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: .530912+0000 mgr.smithi017.mljnlu (mgr.14180) 188 : cluster 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: [DBG] pgmap v162: 193 pgs: 11 creating+peering, 37 unknown, 145 active+clean; 1.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 32 KiB/s rd, 1.5 KiB/s wr, 59 op/s 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54:25.561139+0000 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: mon.smithi017 (mon.0) 666 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023- 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 12-06T03:54:25.564625+0000 mon.smithi017 ( 2023-12-06T03:54:26.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: mon.0) 667 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: -06T03:54:25.606686+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: .14180) 189 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: -06T03:54:25.606784+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: mgr.14180) 190 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi017.rkywta-rgw 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: 06T03:54:25.607202+0000 mon.smithi017 (mon 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: .0) 668 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: :54:25.610392+0000 mon.smithi017 (mon.0 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: ) 669 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi017.rkywta-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: :25.613735+0000 mon.smithi017 (mon.0) 670 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:54:26.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:25.614492+0000 2023-12-06T03:54:26.506 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:26 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 191 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi017.rkywta on smithi017 2023-12-06T03:54:27.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:27 smithi017 conmon[82019]: audit 2023-12-06T03:54:26.034765+0000 mon.smithi017 (mon.0) 671 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2023-12-06T03:54:27.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:27 smithi017 conmon[82019]: cluster 2023-12-06T03:54:26.034995+0000 mon.smithi017 (mon.0) 672 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2023-12-06T03:54:27.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:27 smithi017 conmon[82019]: audit 2023-12-06T03:54:26.039923+0000 mon.smithi017 (mon.0) 673 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:27.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:27 smithi017 conmon[82019]: audit 2023-12-06T03:54:27.035854+0000 mon.smithi017 (mon.0) 674 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:27.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:27 smithi017 conmon[82019]: cluster 2023-12-06T03:54:27.035981+0000 mon.smithi017 (mon.0) 675 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2023-12-06T03:54:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: audit 2023-12-06T03:54:26.034765+0000 mon.smithi017 (mon.0) 671 : 2023-12-06T03:54:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2023-12-06T03:54:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: cluster 2023-12-06T03:54:26.034995+0000 mon.smithi017 (mon.0) 672 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2023-12-06T03:54:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: audit 2023-12-06T03:54 2023-12-06T03:54:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: :26.039923+0000 mon.smithi017 (mon.0) 673 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-12-06T03:54:27.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: audit 2023-12 2023-12-06T03:54:27.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: -06T03:54:27.035854+0000 mon.smithi017 (mon.0) 674 : audit [INF] from='client.? 172.21.15.17:0/284824538' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-12-06T03:54:27.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: cluster 2023-12-06T03:54:27.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: 2023-12-06T03:54:27.035981 2023-12-06T03:54:27.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:27 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 675 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2023-12-06T03:54:28.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:28 smithi017 conmon[82019]: cluster 2023-12-06T03:54:27 2023-12-06T03:54:28.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:28 smithi017 conmon[82019]: .531445+0000 mgr.smithi017.mljnlu (mgr.14180) 192 : cluster [DBG] pgmap v165: 193 pgs: 7 creating+peering, 15 unknown, 171 active+clean; 4.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 163 KiB/s rd, 6.2 KiB/s wr, 311 op/s 2023-12-06T03:54:28.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:28 smithi169 conmon[87179]: cluster 2023-12-06T03:54:27.531445+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:54:28.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:28 smithi169 conmon[87179]: 192 : cluster [DBG] pgmap v165: 193 pgs: 7 creating+peering, 15 unknown, 171 active+clean; 4.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 163 KiB/s rd, 6.2 KiB/s wr, 311 op/s 2023-12-06T03:54:29.137 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-06T03:54:29.151 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T03:54:29.151 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2023-12-06T03:54:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: cluster 2023-12-06T03:54:28.061033+0000 mon.smithi017 (mon.0) 676 2023-12-06T03:54:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2023-12-06T03:54:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: audit 2023-12-06T03:54:28.065206+0000 mon.smithi017 (mon.0) 677 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2023-12-06T03:54:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: audit 2023-12-06 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: T03:54:28.087957+0000 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: mon.smithi017 (mon.0) 678 : audit [INF] 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: 06T03:54:28.093472 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 679 : 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: cephadm 2023- 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: 12-06T03:54:28.100627+0000 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 193 : cephadm [INF] 2023-12-06T03:54:29.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:29 smithi017 conmon[82019]: Deploying daemon haproxy.nfs.foo.smithi169.hibybr on smithi169 2023-12-06T03:54:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:29 smithi169 conmon[87179]: cluster 2023-12-06T03:54:28.061033+0000 mon.smithi017 (mon.0) 676 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2023-12-06T03:54:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:29 smithi169 conmon[87179]: audit 2023-12-06T03:54:28.065206+0000 mon.smithi017 (mon.0) 677 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2023-12-06T03:54:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:29 smithi169 conmon[87179]: audit 2023-12-06T03:54:28.087957+0000 mon.smithi017 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:29 smithi169 conmon[87179]: audit 2023-12-06T03:54:28.093472+0000 mon.smithi017 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:29 smithi169 conmon[87179]: cephadm 2023-12-06T03:54:28.100627+0000 mgr.smithi017.mljnlu (mgr.14180) 193 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.hibybr on smithi169 2023-12-06T03:54:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:30 smithi017 conmon[82019]: audit 2023-12-06T03:54:29. 2023-12-06T03:54:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:30 smithi017 conmon[82019]: 065746+0000 mon.smithi017 (mon.0) 680 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2023-12-06T03:54:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:30 smithi017 conmon[82019]: cluster 2023-12-06T03:54:29.065951+0000 mon.smithi017 (mon.0) 681 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2023-12-06T03:54:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:30 smithi017 conmon[82019]: cluster 2023-12-06T03:54:29.531838+0000 mgr.smithi017.mljnlu (mgr.14180) 194 : cluster [DBG] pgmap v168: 225 pgs: 17 creating+peering, 19 unknown, 189 active+clean; 6.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 263 KiB/s rd, 8.7 KiB/s wr, 505 op/s 2023-12-06T03:54:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:30 smithi169 conmon[87179]: audit 2023-12-06T03:54:29.065746+0000 mon.smithi017 ( 2023-12-06T03:54:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:30 smithi169 conmon[87179]: mon.0) 680 : audit [INF] from='client.? 172.21.15.17:0/4011059370' entity='client.rgw.foorgw.smithi017.wiorko' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2023-12-06T03:54:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:30 smithi169 conmon[87179]: cluster 2023-12-06T03:54:29.065951+0000 mon.smithi017 (mon.0) 681 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2023-12-06T03:54:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:30 smithi169 conmon[87179]: cluster 2023-12-06T03:54:29.531838+0000 mgr.smithi017.mljnlu (mgr.14180) 194 : cluster [DBG] pgmap v168: 225 pgs: 17 creating+peering, 19 unknown, 189 active+clean; 6.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 263 KiB/s rd, 8.7 KiB/s wr, 505 op/s 2023-12-06T03:54:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:31 smithi017 conmon[82019]: cluster 2023-12-06T03:54:30.070187+0000 mon.smithi017 (mon 2023-12-06T03:54:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:31 smithi017 conmon[82019]: .0) 682 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2023-12-06T03:54:31.379 INFO:teuthology.orchestra.run.smithi017.stdout:{ 2023-12-06T03:54:31.379 INFO:teuthology.orchestra.run.smithi017.stdout: "bind": "/foobucket", 2023-12-06T03:54:31.379 INFO:teuthology.orchestra.run.smithi017.stdout: "path": "foobucket", 2023-12-06T03:54:31.380 INFO:teuthology.orchestra.run.smithi017.stdout: "cluster": "foo", 2023-12-06T03:54:31.380 INFO:teuthology.orchestra.run.smithi017.stdout: "mode": "RW", 2023-12-06T03:54:31.380 INFO:teuthology.orchestra.run.smithi017.stdout: "squash": "none" 2023-12-06T03:54:31.380 INFO:teuthology.orchestra.run.smithi017.stdout:} 2023-12-06T03:54:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:31 smithi169 conmon[87179]: cluster 2023-12-06T03:54:30.070187+0000 mon.smithi017 (mon.0) 682 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2023-12-06T03:54:31.820 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-12-06T03:54:31.831 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2023-12-06T03:54:31.831 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:33.235 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:32 smithi017 conmon[82019]: audit 2023-12-06T03:54:31.158186+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:54:33.235 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:32 smithi017 conmon[82019]: mgr.14180) 195 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:33.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:32 smithi017 conmon[82019]: cluster 2023-12-06T03:54:31.532684+0000 mgr.smithi017.mljnlu (mgr.14180) 196 : cluster [DBG] pgmap v170: 225 pgs: 13 creating+peering, 10 unknown, 202 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 190 KiB/s rd, 6.0 KiB/s wr, 358 op/s 2023-12-06T03:54:33.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:32 smithi017 conmon[82019]: audit 2023-12-06T03:54:31.843575+0000 mon.smithi017 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:32 smithi169 conmon[87179]: audit 2023-12-06T03:54:31.158186+0000 mgr.smithi017.mljnlu (mgr.14180) 195 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2023-12-06T03:54:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:32 smithi169 conmon[87179]: cluster 2023-12-06T03:54:31.532684+0000 mgr.smithi017.mljnlu (mgr.14180) 196 : cluster [DBG] pgmap v170: 225 pgs: 13 creating+peering, 10 unknown, 202 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 190 KiB/s rd, 6.0 KiB/s wr, 358 op/s 2023-12-06T03:54:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:32 smithi169 conmon[87179]: audit 2023-12-06T03:54:31.843575+0000 mon.smithi017 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:33.791 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:33.791 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:34.273 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:34 smithi169 conmon[87179]: cluster 2023-12-06T03:54:33.533396+0000 mgr.smithi017.mljnlu (mgr.14180) 197 : cluster [DBG] pgmap v171: 225 pgs: 3 creating+peering, 222 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 155 KiB/s rd, 4.5 KiB/s wr, 271 op/s 2023-12-06T03:54:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:34 smithi169 conmon[87179]: audit 2023-12-06T03:54:33.786662+0000 mgr.smithi017.mljnlu (mgr.14180) 198 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:35.274 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:35.306 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:34 smithi017 conmon[82019]: cluster 2023-12-06T03:54:33.533396+0000 mgr.smithi017.mljnlu (mgr.14180) 197 : cluster [DBG] pgmap v171: 225 pgs: 3 creating+peering, 222 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 155 KiB/s rd, 4.5 KiB/s wr, 271 op/s 2023-12-06T03:54:35.306 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:34 smithi017 conmon[82019]: audit 2023-12-06T03:54:33.786662+0000 mgr.smithi017.mljnlu (mgr.14180) 198 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:36 smithi017 conmon[82019]: cluster 2023-12-06T03:54:35.534032+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:54:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:36 smithi017 conmon[82019]: mgr.14180) 199 : cluster [DBG] pgmap v172: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 KiB/s rd, 2.8 KiB/s wr, 162 op/s 2023-12-06T03:54:37.242 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:37.243 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:36 smithi169 conmon[87179]: cluster 2023-12-06T03:54:35.534032+0000 mgr.smithi017.mljnlu (mgr.14180) 199 : cluster [DBG] pgmap v172: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 KiB/s rd, 2.8 KiB/s wr, 162 op/s 2023-12-06T03:54:37.638 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:38.639 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:38 smithi017 conmon[82019]: audit 2023-12-06T03:54:37.238599+0000 2023-12-06T03:54:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:38 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 200 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:38 smithi017 conmon[82019]: cluster 2023-12-06T03:54:37.534603+0000 mgr.smithi017.mljnlu (mgr.14180) 201 : cluster [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 65 KiB/s rd, 1.7 KiB/s wr, 97 op/s 2023-12-06T03:54:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:38 smithi169 conmon[87179]: audit 2023-12-06T03:54:37.238599+0000 mgr.smithi017.mljnlu (mgr.14180) 200 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:38 smithi169 conmon[87179]: cluster 2023-12-06T03:54:37.534603+0000 mgr.smithi017.mljnlu (mgr.14180) 201 : cluster [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 65 KiB/s rd, 1.7 KiB/s wr, 97 op/s 2023-12-06T03:54:40.563 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:40.564 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:41.020 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:40 smithi169 conmon[87179]: cluster 2023-12-06T03:54:39.535268+0000 mgr.smithi017.mljnlu (mgr.14180) 202 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 60 KiB/s rd, 1.4 KiB/s wr, 89 op/s 2023-12-06T03:54:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:40 smithi017 conmon[82019]: cluster 2023-12-06T03:54:39.535268+0000 mgr.smithi017.mljnlu (mgr.14180) 202 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 60 KiB/s rd, 1.4 KiB/s wr, 89 op/s 2023-12-06T03:54:42.021 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:41 smithi169 conmon[87179]: audit 2023-12-06T03:54:40.559049+0000 mgr.smithi017.mljnlu (mgr.14180) 203 : audit 2023-12-06T03:54:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:41 smithi169 conmon[87179]: [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:42.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:41 smithi017 conmon[82019]: audit 2023-12-06T03:54:40.559049+0000 mgr.smithi017.mljnlu (mgr.14180) 203 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:42 smithi169 conmon[87179]: cluster 2023-12-06T03:54:41.535936+0000 mgr.smithi017.mljnlu (mgr.14180) 204 : cluster 2023-12-06T03:54:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:42 smithi169 conmon[87179]: [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 52 KiB/s rd, 1.2 KiB/s wr, 77 op/s 2023-12-06T03:54:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:42 smithi169 conmon[87179]: audit 2023-12-06T03:54:41.874333+0000 mon.smithi017 (mon.0) 684 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:43.269 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:42 smithi017 conmon[82019]: cluster 2023-12-06T03:54:41.535936 2023-12-06T03:54:43.269 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:42 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 204 : cluster [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 52 KiB/s rd, 1.2 KiB/s wr, 77 op/s 2023-12-06T03:54:43.269 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:42 smithi017 conmon[82019]: audit 2023-12-06T03:54:41.874333+0000 mon.smithi017 (mon.0) 684 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:54:43.854 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:43.855 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:44.288 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:44 smithi169 conmon[87179]: cluster 2023-12-06T03:54:43.536635+0000 mgr.smithi017.mljnlu (mgr.14180) 205 : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 938 B/s wr, 60 op/s 2023-12-06T03:54:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:44 smithi169 conmon[87179]: audit 2023-12-06T03:54:43.850218+0000 mgr.smithi017.mljnlu (mgr.14180) 206 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:45.288 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:44 smithi017 conmon[82019]: cluster 2023-12-06T03:54:43.536635+0000 2023-12-06T03:54:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:44 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 205 : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 938 B/s wr, 60 op/s 2023-12-06T03:54:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:44 smithi017 conmon[82019]: audit 2023-12-06T03:54:43.850218+0000 mgr.smithi017.mljnlu (mgr.14180) 206 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:46 smithi017 conmon[82019]: cluster 2023-12-06T03:54:45.537154+0000 mgr.smithi017.mljnlu (mgr.14180) 207 : cluster [DBG] pgmap v177: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 170 B/s wr, 22 op/s 2023-12-06T03:54:47.187 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:47.187 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:46 smithi169 conmon[87179]: cluster 2023-12-06T03:54:45.537154+0000 mgr.smithi017.mljnlu (mgr.14180) 207 : cluster 2023-12-06T03:54:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:46 smithi169 conmon[87179]: [DBG] pgmap v177: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 170 B/s wr, 22 op/s 2023-12-06T03:54:47.638 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:48.639 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:48 smithi017 conmon[82019]: audit 2023-12-06T03:54:47.182864+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:54:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:48 smithi017 conmon[82019]: ) 208 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:48 smithi017 conmon[82019]: cluster 2023-12-06T03:54:47.537813+0000 mgr.smithi017.mljnlu (mgr.14180) 209 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 10 KiB/s rd, 85 B/s wr, 15 op/s 2023-12-06T03:54:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:48 smithi169 conmon[87179]: audit 2023-12-06T03:54:47.182864+0000 mgr.smithi017.mljnlu (mgr.14180) 208 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:48 smithi169 conmon[87179]: cluster 2023-12-06T03:54:47.537813+0000 mgr.smithi017.mljnlu (mgr.14180) 209 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 10 KiB/s rd, 85 B/s wr, 15 op/s 2023-12-06T03:54:50.457 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:50.458 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:51.202 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:50 smithi017 conmon[82019]: cluster 2023-12-06T03:54:49.538547+0000 mgr.smithi017.mljnlu (mgr.14180) 210 : cluster [DBG] pgmap v179: 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-12-06T03:54:51.203 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:50 smithi169 conmon[87179]: cluster 2023-12-06T03:54:49.538547+0000 mgr.smithi017.mljnlu (mgr.14180) 210 : cluster [DBG] pgmap v179: 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-12-06T03:54:52.204 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:52.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:51 smithi017 conmon[82019]: audit 2023-12-06T03:54:50.451857+0000 mgr.smithi017.mljnlu (mgr.14180) 211 : audit 2023-12-06T03:54:52.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:51 smithi017 conmon[82019]: [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:51 smithi169 conmon[87179]: audit 2023-12-06T03:54:50.451857+0000 mgr.smithi017.mljnlu (mgr.14180) 211 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:51 smithi169 conmon[87179]: 2023-12-06T03:54:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:52 smithi017 conmon[82019]: cluster 2023-12-06T03:54:51.539170+0000 2023-12-06T03:54:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:52 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 212 : cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:54:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:52 smithi169 conmon[87179]: cluster 2023-12-06T03:54:51.539170+0000 mgr.smithi017.mljnlu (mgr.14180) 212 : 2023-12-06T03:54:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:52 smithi169 conmon[87179]: cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:54:54.149 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:54.149 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:54.668 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:54 smithi017 conmon[82019]: cluster 2023-12-06T03:54:53.540022+0000 mgr.smithi017.mljnlu (mgr.14180) 213 : cluster [DBG] pgmap v181: 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-12-06T03:54:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:54 smithi169 conmon[87179]: cluster 2023-12-06T03:54:53.540022+0000 mgr.smithi017.mljnlu (mgr.14180) 213 : cluster [DBG] pgmap v181: 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-12-06T03:54:55.670 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:55 smithi017 conmon[82019]: audit 2023-12-06T03:54:54.145200 2023-12-06T03:54:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:55 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 214 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:55 smithi169 conmon[87179]: audit 2023-12-06T03:54:54.145200+0000 mgr.smithi017.mljnlu (mgr.14180) 214 : audit 2023-12-06T03:54:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:55 smithi169 conmon[87179]: [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:56 smithi017 conmon[82019]: cluster 2023-12-06T03:54:55.540650 2023-12-06T03:54:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:56 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 215 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:54:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:56 smithi169 conmon[87179]: cluster 2023-12-06T03:54:55.540650+0000 mgr.smithi017.mljnlu (mgr.14180) 215 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:54:57.625 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:54:57.625 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:54:58.126 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:54:59.128 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:54:59.155 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:58 smithi017 conmon[82019]: cluster 2023-12-06T03:54:57.541229+0000 2023-12-06T03:54:59.155 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:58 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 216 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:54:59.155 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:54:58 smithi017 conmon[82019]: audit 2023-12-06T03:54:57.620625+0000 mgr.smithi017.mljnlu (mgr.14180) 217 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:54:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:58 smithi169 conmon[87179]: cluster 2023-12-06T03:54:57.541229+0000 mgr.smithi017.mljnlu (mgr.14180) 216 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:54:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:58 smithi169 conmon[87179]: 2023-12-06T03:54:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:54:58 smithi169 conmon[87179]: audit 2023-12-06T03:54:57.620625+0000 mgr.smithi017.mljnlu (mgr.14180) 217 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:01.053 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:01.053 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:00 smithi169 conmon[87179]: cluster 2023-12-06T03:54:59.541827+0000 mgr.smithi017.mljnlu (mgr.14180) 218 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:00 smithi017 conmon[82019]: cluster 2023-12-06T03:54:59 2023-12-06T03:55:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:00 smithi017 conmon[82019]: .541827+0000 mgr.smithi017.mljnlu (mgr.14180) 218 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:01.780 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:02.782 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:02 smithi017 conmon[82019]: audit 2023-12-06T03:55:01.048251+0000 mgr.smithi017.mljnlu (mgr.14180) 219 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:02 smithi017 conmon[82019]: cluster 2023-12-06T03:55:01.542465+0000 mgr.smithi017.mljnlu (mgr.14180) 220 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:02 smithi169 conmon[87179]: audit 2023-12-06T03:55:01.048251+0000 mgr.smithi017.mljnlu (mgr.14180) 219 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:02 smithi169 conmon[87179]: cluster 2023-12-06T03:55:01. 2023-12-06T03:55:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:02 smithi169 conmon[87179]: 542465+0000 mgr.smithi017.mljnlu (mgr.14180) 220 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:04.618 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:04.619 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:05.146 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:04 smithi169 conmon[87179]: cluster 2023-12-06T03:55:03.543245+0000 mgr.smithi017.mljnlu (mgr.14180) 221 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:04 smithi017 conmon[82019]: cluster 2023-12-06T03:55:03.543245+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:55:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:04 smithi017 conmon[82019]: 14180) 221 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:06.146 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:06.178 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:05 smithi017 conmon[82019]: audit 2023-12-06T03:55:04.613714+0000 mgr.smithi017.mljnlu (mgr.14180) 222 : audit 2023-12-06T03:55:06.178 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:05 smithi017 conmon[82019]: [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:05 smithi169 conmon[87179]: audit 2023-12-06T03:55:04.613714+0000 mgr.smithi017.mljnlu (mgr.14180) 222 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:06 smithi017 conmon[82019]: cluster 2023-12-06T03:55:05.543853+0000 mgr.smithi017.mljnlu (mgr.14180) 223 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:06 smithi169 conmon[87179]: cluster 2023-12-06T03:55:05.543853+0000 mgr.smithi017.mljnlu (mgr.14180) 223 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:08.119 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:08.119 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:08.597 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:08 smithi169 conmon[87179]: cluster 2023-12-06T03:55:07.544663+0000 mgr.smithi017.mljnlu (mgr.14180) 224 : cluster [DBG] 2023-12-06T03:55:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:08 smithi169 conmon[87179]: pgmap v188: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:08 smithi017 conmon[82019]: cluster 2023-12-06T03:55:07.544663+0000 mgr.smithi017.mljnlu (mgr.14180) 224 : cluster [DBG] pgmap v188: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-12-06T03:55:09.598 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:10.198 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:09 smithi017 conmon[82019]: audit 2023-12-06T03:55:08.114687+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:55:10.198 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:09 smithi017 conmon[82019]: mgr.14180) 225 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:09 smithi169 conmon[87179]: audit 2023-12-06T03:55:08.114687+0000 mgr.smithi017.mljnlu (mgr.14180) 225 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:11.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:10 smithi017 conmon[82019]: cluster 2023-12-06T03:55:09.545344+0000 mgr.smithi017.mljnlu (mgr.14180) 226 : cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:10 smithi169 conmon[87179]: cluster 2023-12-06T03:55:09.545344+0000 mgr.smithi017.mljnlu (mgr.14180) 226 : 2023-12-06T03:55:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:10 smithi169 conmon[87179]: cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:11.544 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:11.544 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:11.957 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:12.958 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:12 smithi169 conmon[87179]: audit 2023-12-06T03:55:11.540148+0000 mgr.smithi017.mljnlu (mgr.14180) 227 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:12 smithi169 conmon[87179]: 2023-12-06T03:55:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:12 smithi169 conmon[87179]: cluster 2023-12-06T03:55:11.545920+0000 mgr.smithi017.mljnlu (mgr.14180) 228 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:12 smithi017 conmon[82019]: audit 2023-12-06T03:55:11.540148+0000 mgr.smithi017.mljnlu (mgr.14180) 227 : 2023-12-06T03:55:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:12 smithi017 conmon[82019]: audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:12 smithi017 conmon[82019]: cluster 2023-12-06T03:55:11.545920+0000 mgr.smithi017.mljnlu (mgr.14180) 228 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:14.903 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:14.903 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:14 smithi169 conmon[87179]: cluster 2023-12-06T03:55:13.546726+0000 mgr.smithi017.mljnlu (mgr.14180) 229 : cluster [DBG] pgmap v191: 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-12-06T03:55:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:14 smithi017 conmon[82019]: cluster 2023-12-06T03:55:13.546726+0000 mgr.smithi017.mljnlu (mgr.14180) 229 : cluster [DBG] pgmap v191: 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-12-06T03:55:15.419 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:15 smithi169 conmon[87179]: audit 2023-12-06T03:55:14.898569+0000 mgr.smithi017.mljnlu (mgr.14180) 230 : audit 2023-12-06T03:55:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:15 smithi169 conmon[87179]: [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:15 smithi017 conmon[82019]: audit 2023-12-06T03:55:14.898569+0000 mgr.smithi017.mljnlu (mgr.14180) 230 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:15 smithi017 conmon[82019]: 2023-12-06T03:55:16.421 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:17.243 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:16 smithi017 conmon[82019]: cluster 2023-12-06T03:55:15.547500+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:55:17.244 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:16 smithi017 conmon[82019]: mgr.14180) 231 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:16 smithi169 conmon[87179]: cluster 2023-12-06T03:55:15.547500+0000 mgr.smithi017.mljnlu (mgr.14180) 231 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:18.358 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:18.358 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:18.782 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:18 smithi017 conmon[82019]: cluster 2023-12-06T03:55:17.548052+0000 mgr.smithi017.mljnlu (mgr.14180) 232 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:18 smithi169 conmon[87179]: cluster 2023-12-06T03:55:17.548052+0000 mgr.smithi017.mljnlu (mgr.14180) 232 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:19.784 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:19 smithi017 conmon[82019]: audit 2023-12-06T03:55:18.353964+0000 mgr.smithi017.mljnlu 2023-12-06T03:55:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:19 smithi017 conmon[82019]: (mgr.14180) 233 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:19 smithi169 conmon[87179]: audit 2023-12-06T03:55:18.353964+0000 mgr.smithi017.mljnlu (mgr.14180) 233 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:21.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:20 smithi017 conmon[82019]: cluster 2023-12-06T03:55:19.548684+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:55:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:20 smithi017 conmon[82019]: mgr.14180) 234 : cluster [DBG] pgmap v194: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:20 smithi169 conmon[87179]: cluster 2023-12-06T03:55:19.548684+0000 mgr.smithi017.mljnlu (mgr.14180) 234 : cluster [DBG] 2023-12-06T03:55:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:20 smithi169 conmon[87179]: pgmap v194: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:21.745 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:21.745 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:22.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:21 smithi017 conmon[82019]: audit 2023-12-06T03:55:21.501335+0000 mon.smithi017 (mon.0) 685 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.18", "id": [4, 6]}]: dispatch 2023-12-06T03:55:22.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:21 smithi017 conmon[82019]: audit 2023-12-06T03:55:21.501528+0000 mon.smithi017 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2023-12-06T03:55:22.239 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:21 smithi169 conmon[87179]: audit 2023-12-06T03:55:21.501335+0000 mon.smithi017 (mon.0) 685 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.18", "id": [4, 6]}]: dispatch 2023-12-06T03:55:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:21 smithi169 conmon[87179]: audit 2023-12-06T03 2023-12-06T03:55:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:21 smithi169 conmon[87179]: :55:21.501528+0000 mon.smithi017 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2023-12-06T03:55:23.241 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: cluster 2023-12-06T03:55:21.549288+0000 mgr.smithi017.mljnlu (mgr.14180) 235 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: audit 2023-12-06T03:55:21 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: .741117+0000 mgr.smithi017.mljnlu (mgr.14180) 236 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: audit 2023-12-06T03:55:21.960854+0000 mon.smithi017 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.18", "id": [4, 6]}]': finished 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: audit 2023-12-06T03:55:21.960942+0000 mon.smithi017 (mon.0) 688 : audit [INF] 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: cluster 2023-12-06T03:55:21.960997+0000 mon.smithi017 (mon.0) 689 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2023-12-06T03:55:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:22 smithi169 conmon[87179]: 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: cluster 2023-12-06T03:55:21.549288+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: .14180) 235 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: audit 2023-12-06T03:55:21.741117+0000 mgr.smithi017.mljnlu (mgr.14180) 236 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: audit 2023-12-06T03:55:21.960854+0000 mon.smithi017 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.18", "id": [4, 6]}]': finished 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: audit 2023-12-06T03:55 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: :21.960942+0000 mon.smithi017 (mon.0) 688 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: 03:55:21.960997+0000 mon.smithi017 (mon.0) 689 : cluster 2023-12-06T03:55:23.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:22 smithi017 conmon[82019]: [DBG] osdmap e57: 8 total, 8 up, 8 in 2023-12-06T03:55:24.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:23 smithi169 conmon[87179]: cluster 2023-12-06T03:55:22.967389+0000 mon.smithi017 (mon.0) 690 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2023-12-06T03:55:24.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:23 smithi017 conmon[82019]: cluster 2023-12-06T03:55:22.967389+0000 mon.smithi017 (mon.0) 690 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2023-12-06T03:55:25.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:24 smithi017 conmon[82019]: cluster 2023-12-06T03:55:23.549826+0000 mgr.smithi017.mljnlu (mgr.14180) 237 : cluster [DBG] pgmap v198: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:25.179 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:25.179 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:24 smithi169 conmon[87179]: cluster 2023-12-06T03:55:23.549826+0000 mgr.smithi017.mljnlu (mgr.14180) 237 : cluster [DBG] pgmap v198: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:25.607 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:26.608 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:26 smithi169 conmon[87179]: audit 2023-12-06T03:55:25.175140+0000 mgr.smithi017.mljnlu (mgr.14180) 238 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:26 smithi169 conmon[87179]: cluster 2023-12-06T03:55:25.550402+0000 mgr.smithi017.mljnlu (mgr.14180) 239 : cluster [DBG] pgmap v199: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:26 smithi017 conmon[82019]: audit 2023-12-06T03:55:25.175140+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:55:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:26 smithi017 conmon[82019]: 14180) 238 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:26 smithi017 conmon[82019]: cluster 2023-12-06T03:55:25.550402+0000 mgr.smithi017.mljnlu (mgr.14180) 239 : cluster [DBG] pgmap v199: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:28.573 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:28.573 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:28.974 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:28 smithi169 conmon[87179]: cluster 2023-12-06T03:55:27.551174+0000 mgr.smithi017.mljnlu (mgr.14180) 240 : cluster [DBG] pgmap v200: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:29.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:28 smithi017 conmon[82019]: cluster 2023-12-06T03:55:27.551174+0000 mgr.smithi017.mljnlu (mgr.14180) 240 : cluster [DBG] pgmap v200: 225 pgs: 1 activating, 224 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:29.976 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:29 smithi169 conmon[87179]: audit 2023-12-06T03:55:28.568461+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:55:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:29 smithi169 conmon[87179]: 241 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:29 smithi017 conmon[82019]: audit 2023-12-06T03:55:28 2023-12-06T03:55:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:29 smithi017 conmon[82019]: .568461+0000 mgr.smithi017.mljnlu (mgr.14180) 241 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:30 smithi169 conmon[87179]: cluster 2023-12-06T03:55:29.551942+0000 mgr.smithi017.mljnlu (mgr.14180) 242 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:30 smithi017 conmon[82019]: cluster 2023-12-06T03:55:29.551942+0000 2023-12-06T03:55:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:30 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 242 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2023-12-06T03:55:31.910 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:31.911 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:32.353 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:32 smithi169 conmon[87179]: cluster 2023-12-06T03:55:31.552539+0000 mgr.smithi017.mljnlu (mgr.14180) 243 : cluster [DBG] 2023-12-06T03:55:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:32 smithi169 conmon[87179]: pgmap v202: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 106 B/s rd, 0 op/s 2023-12-06T03:55:33.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:32 smithi169 conmon[87179]: audit 2023-12-06T03:55:31.906305+0000 mgr.smithi017.mljnlu (mgr.14180) 244 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:32 smithi017 conmon[82019]: cluster 2023-12-06T03:55:31.552539+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:55:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:32 smithi017 conmon[82019]: ) 243 : cluster [DBG] pgmap v202: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 106 B/s rd, 0 op/s 2023-12-06T03:55:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:32 smithi017 conmon[82019]: audit 2023-12-06T03:55:31.906305+0000 mgr.smithi017.mljnlu (mgr.14180) 244 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:33.355 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:34 smithi169 conmon[87179]: cluster 2023-12-06T03:55:33.553223+0000 mgr.smithi017.mljnlu (mgr.14180) 245 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2023-12-06T03:55:35.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:34 smithi017 conmon[82019]: cluster 2023-12-06T03:55:33.553223+0000 mgr.smithi017.mljnlu (mgr.14180) 245 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2023-12-06T03:55:35.384 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:35.385 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:35.809 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:36.810 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:36 smithi169 conmon[87179]: audit 2023-12-06T03:55:35.380562+0000 mgr.smithi017.mljnlu (mgr.14180) 246 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:36 smithi169 conmon[87179]: cluster 2023-12-06T03:55:35.553723+0000 mgr.smithi017.mljnlu (mgr.14180) 247 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:36 smithi169 conmon[87179]: audit 2023-12-06T03:55:36.909157+0000 mon.smithi017 (mon 2023-12-06T03:55:37.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:36 smithi169 conmon[87179]: .0) 691 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:55:37.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:36 smithi017 conmon[82019]: audit 2023-12-06T03:55:35 2023-12-06T03:55:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:36 smithi017 conmon[82019]: .380562+0000 mgr.smithi017.mljnlu (mgr.14180) 246 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:36 smithi017 conmon[82019]: cluster 2023-12-06T03:55:35.553723+0000 mgr.smithi017.mljnlu (mgr.14180) 247 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:36 smithi017 conmon[82019]: audit 2023-12-06T03:55:36.909157+0000 mon.smithi017 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:55:38.783 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:38.784 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:38 smithi017 conmon[82019]: cluster 2023-12-06T03:55:37.554607 2023-12-06T03:55:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:38 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 248 : cluster [DBG] pgmap v205: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:38 smithi169 conmon[87179]: cluster 2023-12-06T03:55:37.554607+0000 mgr.smithi017.mljnlu (mgr.14180) 248 : cluster [DBG] pgmap v205: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:39.275 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:40.275 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:40.367 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:40 smithi017 conmon[82019]: audit 2023-12-06T03:55:38.777570+0000 mgr.smithi017.mljnlu (mgr.14180) 249 2023-12-06T03:55:40.368 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:40 smithi017 conmon[82019]: : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:40.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:40 smithi169 conmon[87179]: audit 2023-12-06T03:55:38.777570+0000 mgr.smithi017.mljnlu (mgr.14180) 249 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:41 smithi017 conmon[82019]: cluster 2023-12-06T03:55:39. 2023-12-06T03:55:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:41 smithi017 conmon[82019]: 555322+0000 mgr.smithi017.mljnlu (mgr.14180) 250 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:41 smithi169 conmon[87179]: cluster 2023-12-06T03:55:39.555322+0000 mgr.smithi017.mljnlu (mgr.14180) 250 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:42.288 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:42.288 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:42.818 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:43 smithi017 conmon[82019]: cluster 2023-12-06T03:55:41.555886 2023-12-06T03:55:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:43 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 251 : cluster [DBG] pgmap v207: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:43 smithi169 conmon[87179]: cluster 2023-12-06T03:55:41.555886+0000 mgr.smithi017.mljnlu (mgr.14180) 251 : cluster [DBG] pgmap v207: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:43.819 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:44 smithi017 conmon[82019]: audit 2023-12-06T03:55: 2023-12-06T03:55:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:44 smithi017 conmon[82019]: 42.283855+0000 mgr.smithi017.mljnlu (mgr.14180) 252 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:44 smithi169 conmon[87179]: audit 2023-12-06T03:55:42.283855+0000 mgr.smithi017.mljnlu (mgr.14180) 252 : audit [DBG] 2023-12-06T03:55:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:44 smithi169 conmon[87179]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:45 smithi017 conmon[82019]: cluster 2023-12-06T03:55:43.556680+0000 mgr.smithi017.mljnlu 2023-12-06T03:55:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:45 smithi017 conmon[82019]: (mgr.14180) 253 : cluster [DBG] pgmap v208: 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-12-06T03:55:45.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:45 smithi169 conmon[87179]: cluster 2023-12-06T03:55:43.556680+0000 mgr.smithi017.mljnlu (mgr.14180) 253 : cluster [DBG] pgmap v208: 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-12-06T03:55:45.799 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:45.799 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:46.284 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:46 smithi017 conmon[82019]: cluster 2023-12-06T03:55:45.557343+0000 mgr.smithi017.mljnlu (mgr.14180) 254 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:46.284 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:46 smithi017 conmon[82019]: audit 2023-12-06T03:55:45.795195+0000 mgr.smithi017.mljnlu (mgr.14180) 255 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:46.286 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:46.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:46 smithi169 conmon[87179]: cluster 2023-12-06T03:55:45.557343+0000 mgr.smithi017.mljnlu (mgr.14180) 254 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:46.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:46 smithi169 conmon[87179]: audit 2023-12-06T03:55:45.795195+0000 mgr.smithi017.mljnlu (mgr.14180) 255 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:47.287 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:48.961 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:48 smithi017 conmon[82019]: cluster 2023-12-06T03:55:47 2023-12-06T03:55:48.962 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:48 smithi017 conmon[82019]: .558224+0000 mgr.smithi017.mljnlu (mgr.14180) 256 : cluster [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:48 smithi169 conmon[87179]: cluster 2023-12-06T03:55:47.558224+0000 mgr.smithi017.mljnlu (mgr.14180) 256 : cluster [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:49.348 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:49.348 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:49.752 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:50.753 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:50 smithi169 conmon[87179]: audit 2023-12-06T03:55:49.343936+0000 mgr.smithi017.mljnlu (mgr.14180) 257 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:50 smithi169 conmon[87179]: cluster 2023-12-06T03:55:49 2023-12-06T03:55:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:50 smithi169 conmon[87179]: .558930+0000 mgr.smithi017.mljnlu (mgr.14180) 258 : cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:50 smithi017 conmon[82019]: audit 2023-12-06T03:55:49.343936+0000 mgr.smithi017.mljnlu (mgr.14180) 257 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:50 smithi017 conmon[82019]: cluster 2023-12-06T03:55:49.558930+0000 mgr.smithi017.mljnlu (mgr.14180) 258 : cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:52.596 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:52.596 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:52.843 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:52 smithi017 conmon[82019]: cluster 2023-12-06T03:55 2023-12-06T03:55:52.843 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:52 smithi017 conmon[82019]: :51.559509+0000 mgr.smithi017.mljnlu (mgr.14180) 259 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:52 smithi169 conmon[87179]: cluster 2023-12-06T03:55:51.559509+0000 mgr.smithi017.mljnlu (mgr.14180) 259 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:53.106 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:54.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:53 smithi169 conmon[87179]: audit 2023-12-06T03:55:52.591602+0000 mgr.smithi017.mljnlu (mgr.14180) 260 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:53 smithi017 conmon[82019]: audit 2023-12-06T03:55:52.591602+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:55:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:53 smithi017 conmon[82019]: mgr.14180) 260 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:54.107 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:54.884 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:54 smithi017 conmon[82019]: cluster 2023-12-06T03:55:53.560200+0000 mgr.smithi017.mljnlu (mgr.14180) 261 : cluster [DBG] pgmap v213: 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-12-06T03:55:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:54 smithi169 conmon[87179]: cluster 2023-12-06T03:55:53.560200+0000 mgr.smithi017.mljnlu (mgr.14180) 261 : cluster [DBG] pgmap v213: 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-12-06T03:55:55.982 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:55.982 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:56.451 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:55:56.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:56 smithi017 conmon[82019]: cluster 2023-12-06T03:55:55.560909+0000 2023-12-06T03:55:56.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:56 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 262 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:56.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:56 smithi017 conmon[82019]: audit 2023-12-06T03:55:55.977463+0000 mgr.smithi017.mljnlu (mgr.14180) 263 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:56 smithi169 conmon[87179]: cluster 2023-12-06T03:55:55.560909+0000 mgr.smithi017.mljnlu (mgr.14180) 262 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:56 smithi169 conmon[87179]: audit 2023-12-06T03:55:55.977463+0000 mgr.smithi017.mljnlu (mgr.14180) 263 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:55:57.452 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:55:58.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:55:58 smithi017 conmon[82019]: cluster 2023-12-06T03:55:57.561529+0000 mgr.smithi017.mljnlu (mgr.14180) 264 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:59.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:55:58 smithi169 conmon[87179]: cluster 2023-12-06T03:55:57.561529+0000 mgr.smithi017.mljnlu (mgr.14180) 264 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:55:59.370 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:55:59.370 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:55:59.804 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:00.804 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:00 smithi169 conmon[87179]: audit 2023-12-06T03:55:59.366103+0000 mgr.smithi017.mljnlu (mgr.14180) 265 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:01.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:00 smithi169 conmon[87179]: cluster 2023-12-06T03:55:59.562369+0000 mgr.smithi017.mljnlu (mgr.14180) 266 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:01.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:00 smithi017 conmon[82019]: audit 2023-12-06T03:55:59.366103+0000 mgr.smithi017.mljnlu (mgr.14180) 265 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:00 smithi017 conmon[82019]: cluster 2023-12-06T03:55:59.562369+0000 mgr.smithi017.mljnlu (mgr.14180) 266 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:02.860 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:02.861 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:03.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:02 smithi169 conmon[87179]: cluster 2023-12-06T03:56:01.562962+0000 mgr.smithi017.mljnlu (mgr.14180) 267 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:03.065 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:02 smithi017 conmon[82019]: cluster 2023-12-06T03:56:01.562962+0000 mgr.smithi017.mljnlu (mgr.14180) 267 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:03.370 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:04.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:03 smithi169 conmon[87179]: audit 2023-12-06T03:56:02.856419+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:56:04.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:03 smithi169 conmon[87179]: .14180) 268 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:04.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:03 smithi017 conmon[82019]: audit 2023-12-06T03:56 2023-12-06T03:56:04.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:03 smithi017 conmon[82019]: :02.856419+0000 mgr.smithi017.mljnlu (mgr.14180) 268 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:04.371 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:04.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:04 smithi017 conmon[82019]: cluster 2023-12-06T03: 2023-12-06T03:56:04.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:04 smithi017 conmon[82019]: 56:03.563641+0000 mgr.smithi017.mljnlu (mgr.14180) 269 : cluster [DBG] pgmap v218: 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-12-06T03:56:05.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:04 smithi169 conmon[87179]: cluster 2023-12-06T03:56:03.563641+0000 mgr.smithi017.mljnlu (mgr.14180) 269 : cluster [DBG] pgmap v218: 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-12-06T03:56:06.225 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:06.226 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:06.724 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:07.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:06 smithi169 conmon[87179]: cluster 2023-12-06T03:56:05.564164+0000 mgr.smithi017.mljnlu (mgr.14180) 270 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:06 smithi017 conmon[82019]: cluster 2023-12-06 2023-12-06T03:56:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:06 smithi017 conmon[82019]: T03:56:05.564164+0000 mgr.smithi017.mljnlu (mgr.14180) 270 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:07.725 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:08.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:07 smithi169 conmon[87179]: audit 2023-12-06T03:56:06.221480+0000 mgr.smithi017.mljnlu (mgr.14180) 271 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:07 smithi017 conmon[82019]: audit 2023-12-06T03:56:06.221480+0000 mgr.smithi017.mljnlu (mgr.14180) 271 : audit [DBG] 2023-12-06T03:56:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:07 smithi017 conmon[82019]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:08.939 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:08 smithi017 conmon[82019]: cluster 2023-12-06T03:56:07.565056+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:08.939 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:08 smithi017 conmon[82019]: mgr.14180) 272 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:09.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:08 smithi169 conmon[87179]: cluster 2023-12-06T03:56:07.565056+0000 mgr.smithi017.mljnlu (mgr.14180) 272 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:09.550 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:09.550 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:10.082 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:11.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:10 smithi169 conmon[87179]: audit 2023-12-06T03:56:09.545010+0000 mgr.smithi017.mljnlu (mgr.14180) 273 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:11.067 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:10 smithi169 conmon[87179]: cluster 2023-12-06T03:56:09.565681+0000 2023-12-06T03:56:11.067 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:10 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 274 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:10 smithi017 conmon[82019]: audit 2023-12-06T03:56:09.545010+0000 mgr.smithi017.mljnlu (mgr.14180) 273 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:10 smithi017 conmon[82019]: cluster 2023-12-06T03:56:09.565681+0000 mgr.smithi017.mljnlu (mgr.14180) 274 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:11.083 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:13.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:12 smithi169 conmon[87179]: cluster 2023-12-06T03:56:11.566467+0000 mgr.smithi017.mljnlu (mgr.14180) 275 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:13.037 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:13.037 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:13.061 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:12 smithi017 conmon[82019]: cluster 2023-12-06 2023-12-06T03:56:13.061 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:12 smithi017 conmon[82019]: T03:56:11.566467+0000 mgr.smithi017.mljnlu (mgr.14180) 275 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:13.535 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:14.536 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:14 smithi017 conmon[82019]: audit 2023-12-06T03:56:13.031795+0000 mgr.smithi017.mljnlu (mgr.14180) 276 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:14 smithi017 conmon[82019]: cluster 2023-12-06T03:56:13.567153+0000 mgr.smithi017.mljnlu (mgr.14180) 277 : cluster [DBG] pgmap v223: 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-12-06T03:56:15.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:14 smithi169 conmon[87179]: audit 2023-12-06T03:56:13.031795+0000 mgr.smithi017.mljnlu (mgr.14180) 276 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:15.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:14 smithi169 conmon[87179]: cluster 2023-12-06T03:56:13.567153+0000 mgr.smithi017.mljnlu (mgr.14180) 277 : cluster [DBG] pgmap v223: 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-12-06T03:56:16.517 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:16.517 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:16.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:16 smithi017 conmon[82019]: cluster 2023-12-06T03:56:15.567746+0000 2023-12-06T03:56:16.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:16 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 278 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:16.999 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:17.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:16 smithi169 conmon[87179]: cluster 2023-12-06T03:56:15.567746+0000 mgr.smithi017.mljnlu (mgr.14180) 278 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:17.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:16 smithi169 conmon[87179]: 2023-12-06T03:56:17.999 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:18.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:17 smithi169 conmon[87179]: audit 2023-12-06T03:56:16.512829+0000 mgr.smithi017.mljnlu (mgr.14180) 279 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:18.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:17 smithi017 conmon[82019]: audit 2023-12-06T03:56:16.512829+0000 mgr.smithi017.mljnlu (mgr.14180) 279 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:18.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:18 smithi017 conmon[82019]: cluster 2023-12-06T03:56:17.568689+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:18.974 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:18 smithi017 conmon[82019]: mgr.14180) 280 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:19.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:18 smithi169 conmon[87179]: cluster 2023-12-06T03:56:17.568689+0000 mgr.smithi017.mljnlu (mgr.14180) 280 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:19.810 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:19.810 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:20.251 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:21.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:20 smithi169 conmon[87179]: cluster 2023-12-06T03:56:19.569334+0000 mgr.smithi017.mljnlu (mgr.14180) 281 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:21.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:20 smithi169 conmon[87179]: audit 2023-12-06T03:56:19.804911+0000 mgr.smithi017.mljnlu (mgr.14180) 282 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:20 smithi017 conmon[82019]: cluster 2023-12-06T03:56:19.569334+0000 mgr.smithi017.mljnlu (mgr.14180) 281 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:21.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:20 smithi017 conmon[82019]: audit 2023-12-06T03:56:19.804911+0000 mgr.smithi017.mljnlu (mgr.14180) 282 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:21.252 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:23.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:22 smithi169 conmon[87179]: cluster 2023-12-06T03:56:21.569910+0000 mgr.smithi017.mljnlu (mgr.14180) 283 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:22 smithi017 conmon[82019]: cluster 2023-12-06T03:56:21.569910+0000 mgr.smithi017.mljnlu (mgr.14180) 283 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:23.224 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:23.224 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:23.718 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:24.720 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:24 smithi169 conmon[87179]: audit 2023-12-06T03:56:23.218578+0000 mgr.smithi017.mljnlu (mgr.14180) 284 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:24 smithi169 conmon[87179]: cluster 2023-12-06T03:56:23.570567+0000 mgr.smithi017.mljnlu (mgr.14180) 285 : cluster [DBG] pgmap v228: 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-12-06T03:56:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:24 smithi017 conmon[82019]: audit 2023-12-06T03:56:23.218578+0000 mgr.smithi017.mljnlu (mgr.14180) 284 : audit 2023-12-06T03:56:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:24 smithi017 conmon[82019]: [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:24 smithi017 conmon[82019]: cluster 2023-12-06T03:56:23.570567+0000 mgr.smithi017.mljnlu (mgr.14180) 285 : cluster [DBG] pgmap v228: 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-12-06T03:56:26.718 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:26.719 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:26.959 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:26 smithi017 conmon[82019]: cluster 2023-12-06T03:56:25.571112+0000 mgr.smithi017.mljnlu (mgr.14180) 286 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:26 smithi169 conmon[87179]: cluster 2023-12-06T03:56:25.571112+0000 mgr.smithi017.mljnlu (mgr.14180) 286 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:27.190 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:28.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:27 smithi169 conmon[87179]: audit 2023-12-06T03:56:26.714336+0000 mgr.smithi017.mljnlu (mgr.14180) 287 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:28.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:27 smithi169 conmon[87179]: 2023-12-06T03:56:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:27 smithi017 conmon[82019]: audit 2023-12-06T03:56:26.714336+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:56:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:27 smithi017 conmon[82019]: ) 287 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:28.193 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:28 smithi169 conmon[87179]: cluster 2023-12-06T03:56:27.571721+0000 mgr.smithi017.mljnlu (mgr.14180) 288 2023-12-06T03:56:29.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:28 smithi169 conmon[87179]: : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:28 smithi017 conmon[82019]: cluster 2023-12-06T03:56:27.571721+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:28 smithi017 conmon[82019]: mgr.14180) 288 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:30.155 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:30.155 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:30.641 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:30.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:30 smithi017 conmon[82019]: cluster 2023-12-06T03:56:29.572504+0000 mgr.smithi017.mljnlu (mgr.14180) 289 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:30 smithi169 conmon[87179]: cluster 2023-12-06T03:56:29.572504+0000 mgr.smithi017.mljnlu (mgr.14180) 289 : cluster [DBG] 2023-12-06T03:56:31.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:30 smithi169 conmon[87179]: pgmap v231: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:31.642 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:32.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:31 smithi169 conmon[87179]: audit 2023-12-06T03:56:30.150464+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:32.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:31 smithi169 conmon[87179]: mgr.14180) 290 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:32.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:31 smithi017 conmon[82019]: audit 2023-12-06T03:56:30.150464+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:56:32.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:31 smithi017 conmon[82019]: 290 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:32.906 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:32 smithi017 conmon[82019]: cluster 2023-12-06T03:56:31.573350+0000 mgr.smithi017.mljnlu 2023-12-06T03:56:32.906 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:32 smithi017 conmon[82019]: (mgr.14180) 291 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:33.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:32 smithi169 conmon[87179]: cluster 2023-12-06T03:56:31.573350+0000 mgr.smithi017.mljnlu (mgr.14180) 291 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:33.738 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:33.738 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:34.197 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:34 smithi169 conmon[87179]: cluster 2023-12-06T03:56:33.573996+0000 mgr.smithi017.mljnlu (mgr.14180) 292 : cluster [DBG] pgmap v233: 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-12-06T03:56:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:34 smithi169 conmon[87179]: 2023-12-06T03:56:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:34 smithi169 conmon[87179]: audit 2023-12-06T03:56:33.733805+0000 mgr.smithi017.mljnlu (mgr.14180) 293 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:34 smithi017 conmon[82019]: cluster 2023-12-06T03:56:33.573996+0000 mgr.smithi017.mljnlu (mgr.14180) 292 : cluster [DBG] pgmap v233: 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-12-06T03:56:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:34 smithi017 conmon[82019]: audit 2023-12-06T03:56:33.733805+0000 mgr.smithi017.mljnlu (mgr.14180) 293 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:35.198 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:37.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:36 smithi169 conmon[87179]: cluster 2023-12-06T03:56:35.574493+0000 mgr.smithi017.mljnlu (mgr.14180) 294 : cluster [DBG] pgmap v234: 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-12-06T03:56:37.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:36 smithi169 conmon[87179]: 2023-12-06T03:56:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:36 smithi017 conmon[82019]: cluster 2023-12-06T03:56:35.574493+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:37.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:36 smithi017 conmon[82019]: mgr.14180) 294 : cluster [DBG] pgmap v234: 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-12-06T03:56:37.124 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:37.124 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:37.559 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:38.560 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:38 smithi169 conmon[87179]: audit 2023-12-06T03:56:37.120016+0000 mgr.smithi017.mljnlu (mgr.14180) 295 : audit 2023-12-06T03:56:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:38 smithi169 conmon[87179]: [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:38 smithi169 conmon[87179]: cluster 2023-12-06T03:56:37.575137+0000 mgr.smithi017.mljnlu (mgr.14180) 296 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:38 smithi017 conmon[82019]: audit 2023-12-06T03:56:37.120016+0000 mgr.smithi017.mljnlu (mgr.14180) 295 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:38 smithi017 conmon[82019]: cluster 2023-12-06T03:56:37.575137+0000 mgr.smithi017.mljnlu (mgr.14180) 296 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:40.525 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:40.525 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:40.820 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:40 smithi017 conmon[82019]: cluster 2023-12-06T03:56:39.575898+0000 2023-12-06T03:56:40.821 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:40 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 297 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:40.929 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:40 smithi169 conmon[87179]: cluster 2023-12-06T03:56:39.575898+0000 mgr.smithi017.mljnlu (mgr.14180) 297 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:40 smithi169 conmon[87179]: 2023-12-06T03:56:41.931 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:42.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:41 smithi169 conmon[87179]: audit 2023-12-06T03:56:40.519323+0000 mgr.smithi017.mljnlu (mgr.14180) 298 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:42.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:41 smithi169 conmon[87179]: 2023-12-06T03:56:42.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:41 smithi017 conmon[82019]: audit 2023-12-06T03:56:40.519323+0000 mgr.smithi017.mljnlu (mgr.14180) 298 2023-12-06T03:56:42.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:41 smithi017 conmon[82019]: : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:42 smithi017 conmon[82019]: cluster 2023-12-06T03:56:41.576593+0000 mgr.smithi017.mljnlu (mgr.14180) 299 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:43.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:42 smithi169 conmon[87179]: cluster 2023-12-06T03:56:41.576593+0000 mgr.smithi017.mljnlu (mgr.14180) 299 : cluster 2023-12-06T03:56:43.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:42 smithi169 conmon[87179]: [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:43.785 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:43.786 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:44.283 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:44 smithi169 conmon[87179]: cluster 2023-12-06T03:56:43.577304+0000 mgr.smithi017.mljnlu (mgr.14180) 300 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-12-06T03:56:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:44 smithi169 conmon[87179]: audit 2023-12-06T03:56:43.780912+0000 mgr.smithi017.mljnlu (mgr.14180) 301 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:44 smithi017 conmon[82019]: cluster 2023-12-06T03:56:43.577304+0000 2023-12-06T03:56:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:44 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 300 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-12-06T03:56:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:44 smithi017 conmon[82019]: audit 2023-12-06T03:56:43.780912+0000 mgr.smithi017.mljnlu (mgr.14180) 301 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:45.284 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:46 smithi169 conmon[87179]: cluster 2023-12-06T03:56:45.578041+0000 mgr.smithi017.mljnlu (mgr.14180) 302 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:46 smithi017 conmon[82019]: cluster 2023-12-06T03:56:45.578041+0000 mgr.smithi017.mljnlu (mgr.14180) 302 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T03:56:47.127 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:47.128 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:47.637 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:48.638 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:48 smithi169 conmon[87179]: audit 2023-12-06T03:56:47.123538+0000 mgr.smithi017.mljnlu (mgr.14180) 303 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:48 smithi169 conmon[87179]: cluster 2023-12-06T03:56:47.578623+0000 mgr.smithi017.mljnlu (mgr.14180) 304 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2023-12-06T03:56:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:48 smithi017 conmon[82019]: audit 2023-12-06T03:56:47.123538+0000 mgr.smithi017.mljnlu (mgr.14180) 303 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:48 smithi017 conmon[82019]: cluster 2023-12-06T03:56:47.578623+0000 mgr.smithi017.mljnlu (mgr.14180) 304 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2023-12-06T03:56:50.524 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:50.525 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:50.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:50 smithi017 conmon[82019]: cluster 2023-12-06T03:56:49.579290+0000 mgr.smithi017.mljnlu (mgr.14180) 305 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:51.000 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:50 smithi169 conmon[87179]: cluster 2023-12-06T03:56:49.579290+0000 mgr.smithi017.mljnlu (mgr.14180) 305 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:50 smithi169 conmon[87179]: 2023-12-06T03:56:52.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:51 smithi169 conmon[87179]: audit 2023-12-06T03:56:50.520590+0000 mgr.smithi017.mljnlu (mgr.14180) 306 : audit 2023-12-06T03:56:52.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:51 smithi169 conmon[87179]: [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:52.000 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:52.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:51 smithi017 conmon[82019]: audit 2023-12-06T03:56:50.520590+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:56:52.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:51 smithi017 conmon[82019]: mgr.14180) 306 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:52.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:52 smithi017 conmon[82019]: cluster 2023-12-06T03:56:51.579921 2023-12-06T03:56:52.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:52 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 307 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:52 smithi169 conmon[87179]: cluster 2023-12-06T03:56:51.579921+0000 mgr.smithi017.mljnlu (mgr.14180) 307 : 2023-12-06T03:56:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:52 smithi169 conmon[87179]: cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:53.997 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:53.998 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:54.450 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:54 smithi169 conmon[87179]: cluster 2023-12-06T03:56:53.580674+0000 mgr.smithi017.mljnlu (mgr.14180) 308 : cluster [DBG] pgmap v243: 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-12-06T03:56:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:54 smithi169 conmon[87179]: audit 2023-12-06T03:56:53.992477+0000 mgr.smithi017.mljnlu (mgr.14180) 309 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:54 smithi017 conmon[82019]: cluster 2023-12-06T03:56:53.580674+0000 mgr.smithi017.mljnlu (mgr.14180) 308 : cluster [DBG] pgmap v243: 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-12-06T03:56:55.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:54 smithi017 conmon[82019]: audit 2023-12-06T03:56:53.992477+0000 mgr.smithi017.mljnlu (mgr.14180) 309 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:55.451 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:56 smithi169 conmon[87179]: cluster 2023-12-06T03:56:55.581158+0000 mgr.smithi017.mljnlu (mgr.14180) 310 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:56 smithi169 conmon[87179]: 2023-12-06T03:56:57.009 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:56 smithi017 conmon[82019]: cluster 2023-12-06T03:56:55.581158+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:56:57.010 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:56 smithi017 conmon[82019]: .14180) 310 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:57.427 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:56:57.427 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z 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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:56:57.923 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:56:58.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:57 smithi017 conmon[82019]: audit 2023-12-06T03:56:57.441649+0000 mon.smithi017 (mon 2023-12-06T03:56:58.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:57 smithi017 conmon[82019]: .0) 692 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.hibybr"}]: dispatch 2023-12-06T03:56:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:57 smithi169 conmon[87179]: audit 2023-12-06T03:56:57.441649+0000 mon.smithi017 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.hibybr"}]: dispatch 2023-12-06T03:56:58.925 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:56:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: audit 2023-12-06T03:56:57.422951+0000 mgr.smithi017.mljnlu (mgr.14180) 311 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: cephadm 2023-12-06T03:56:57.441150+0000 mgr.smithi017.mljnlu (mgr.14180) 312 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: ERROR: Failed to extract uid/gid for path /var/ 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: cephadm 2023-12-06T03:56:57.441325+0000 mgr.smithi017.mljnlu (mgr.14180) 313 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: cephadm 2023-12-06T03:56:57.442231+0000 mgr.smithi017.mljnlu (mgr.14180) 314 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: cephadm 2023-12-06T03:56:57.443719+0000 mgr.smithi017.mljnlu (mgr.14180) 315 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.lwwyge on smithi017 2023-12-06T03:56:59.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:56:58 smithi017 conmon[82019]: cluster 2023-12-06T03:56:57.581712+0000 mgr.smithi017.mljnlu (mgr.14180) 316 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: audit 2023-12-06T03:56:57.422951+0000 mgr.smithi017.mljnlu (mgr.14180) 311 : audit [DBG] 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: cephadm 2023-12-06T03:56:57.441150+0000 mgr.smithi017.mljnlu (mgr.14180) 312 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host -- 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: cephadm 2023-12-06T03:56:57.441325+0000 mgr.smithi017.mljnlu (mgr.14180) 313 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: cephadm 2023-12-06T03:56:57.442231+0000 mgr.smithi017.mljnlu (mgr.14180) 314 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.hibybr ... 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:05Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:55:42Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:56:19Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:56:59.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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-12-06T03:56:59.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:56:59.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: cephadm 2023-12-06T03:56:57.443719+0000 mgr.smithi017.mljnlu (mgr.14180) 315 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.lwwyge on smithi017 2023-12-06T03:56:59.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:56:58 smithi169 conmon[87179]: cluster 2023-12-06T03:56:57.581712+0000 mgr.smithi017.mljnlu (mgr.14180) 316 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:00.868 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:00.868 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:01.019 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:00 smithi169 conmon[87179]: cluster 2023-12-06T03:56:59.582361+0000 mgr.smithi017.mljnlu (mgr.14180) 317 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:00 smithi017 conmon[82019]: cluster 2023-12-06T03:56:59.582361+0000 mgr.smithi017.mljnlu (mgr.14180) 317 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:01.366 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:02.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:01 smithi017 conmon[82019]: audit 2023-12-06T03:57:00.862729+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:57:02.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:01 smithi017 conmon[82019]: 14180) 318 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:01 smithi169 conmon[87179]: audit 2023-12-06T03:57:00.862729+0000 mgr.smithi017.mljnlu (mgr.14180) 318 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:01 smithi169 conmon[87179]: 2023-12-06T03:57:02.367 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:02 smithi017 conmon[82019]: cluster 2023-12-06T03:57:01.582921+0000 mgr.smithi017.mljnlu (mgr.14180) 319 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:02 smithi169 conmon[87179]: cluster 2023-12-06T03:57:01.582921+0000 mgr.smithi017.mljnlu (mgr.14180) 319 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:04.339 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:04.340 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:04.814 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:04 smithi017 conmon[82019]: cluster 2023-12-06T03:57:03.583800+0000 mgr.smithi017.mljnlu (mgr.14180) 320 : cluster [DBG] pgmap v248: 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-12-06T03:57:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:04 smithi169 conmon[87179]: cluster 2023-12-06T03:57:03.583800+0000 mgr.smithi017.mljnlu (mgr.14180) 320 : cluster [DBG] 2023-12-06T03:57:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:04 smithi169 conmon[87179]: pgmap v248: 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-12-06T03:57:05.815 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:05 smithi017 conmon[82019]: audit 2023-12-06T03:57:04.334866+0000 mgr.smithi017.mljnlu (mgr.14180) 321 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:05 smithi169 conmon[87179]: audit 2023-12-06T03:57:04.334866+0000 mgr.smithi017.mljnlu (mgr.14180) 321 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:06.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:05 smithi169 conmon[87179]: 2023-12-06T03:57:07.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:06 smithi017 conmon[82019]: cluster 2023-12-06T03:57:05.584328+0000 mgr.smithi017.mljnlu (mgr.14180) 322 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:06 smithi169 conmon[87179]: cluster 2023-12-06T03:57:05.584328+0000 mgr.smithi017.mljnlu (mgr.14180) 322 : cluster 2023-12-06T03:57:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:06 smithi169 conmon[87179]: [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:07.677 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:07.678 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:08.179 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:08 smithi017 conmon[82019]: cluster 2023-12-06T03:57:07.584916+0000 mgr.smithi017.mljnlu (mgr.14180) 323 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:08 smithi017 conmon[82019]: audit 2023-12-06T03:57:07.673506+0000 mgr.smithi017.mljnlu (mgr.14180) 324 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:09.179 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:08 smithi169 conmon[87179]: cluster 2023-12-06T03:57:07.584916+0000 mgr.smithi017.mljnlu (mgr.14180) 323 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:08 smithi169 conmon[87179]: audit 2023-12-06T03:57:07.673506+0000 mgr.smithi017.mljnlu (mgr.14180) 324 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:10 smithi017 conmon[82019]: cluster 2023-12-06T03:57:09.585536+0000 mgr.smithi017.mljnlu (mgr.14180) 325 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:11.144 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:11.144 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:10 smithi169 conmon[87179]: cluster 2023-12-06T03:57:09.585536+0000 mgr.smithi017.mljnlu (mgr.14180) 325 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:10 smithi169 conmon[87179]: 2023-12-06T03:57:11.641 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:12.643 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:12 smithi017 conmon[82019]: audit 2023-12-06T03:57:11.139816+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:57:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:12 smithi017 conmon[82019]: .14180) 326 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:12 smithi017 conmon[82019]: cluster 2023-12-06T03:57:11.586393+0000 mgr.smithi017.mljnlu (mgr.14180) 327 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:12 smithi169 conmon[87179]: audit 2023-12-06T03:57:11.139816+0000 mgr.smithi017.mljnlu (mgr.14180) 326 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:12 smithi169 conmon[87179]: cluster 2023-12-06T03:57:11.586393+0000 mgr.smithi017.mljnlu (mgr.14180) 327 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:14.484 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:14.484 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:15.000 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:14 smithi017 conmon[82019]: cluster 2023-12-06T03:57:13.587242+0000 mgr.smithi017.mljnlu (mgr.14180) 328 : cluster [DBG] pgmap v253: 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-12-06T03:57:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:14 smithi169 conmon[87179]: cluster 2023-12-06T03:57:13.587242+0000 mgr.smithi017.mljnlu (mgr.14180) 328 : cluster [DBG] 2023-12-06T03:57:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:14 smithi169 conmon[87179]: pgmap v253: 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-12-06T03:57:16.001 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:16.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:15 smithi017 conmon[82019]: audit 2023-12-06T03:57:14.479747+0000 mgr.smithi017.mljnlu (mgr.14180) 329 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:15 smithi169 conmon[87179]: audit 2023-12-06T03:57:14.479747+0000 mgr.smithi017.mljnlu (mgr.14180) 329 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:16.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:16 smithi017 conmon[82019]: cluster 2023-12-06T03:57:15.587728+0000 2023-12-06T03:57:16.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:16 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 330 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:16 smithi169 conmon[87179]: cluster 2023-12-06T03:57:15.587728+0000 mgr.smithi017.mljnlu (mgr.14180) 330 : cluster 2023-12-06T03:57:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:16 smithi169 conmon[87179]: [DBG] pgmap v254: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:17.814 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:17.814 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:18.247 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:18 smithi017 conmon[82019]: cluster 2023-12-06T03:57:17.588486+0000 mgr.smithi017.mljnlu (mgr.14180) 331 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:18 smithi017 conmon[82019]: audit 2023-12-06T03:57:17.809023+0000 mgr.smithi017.mljnlu (mgr.14180) 332 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:19.248 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:18 smithi169 conmon[87179]: cluster 2023-12-06T03:57:17.588486+0000 mgr.smithi017.mljnlu (mgr.14180) 331 : cluster [DBG] 2023-12-06T03:57:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:18 smithi169 conmon[87179]: pgmap v255: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:18 smithi169 conmon[87179]: audit 2023-12-06T03:57:17.809023+0000 mgr.smithi017.mljnlu (mgr.14180) 332 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:20 smithi017 conmon[82019]: cluster 2023-12-06T03:57:19.589128+0000 mgr.smithi017.mljnlu (mgr.14180) 333 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:21.207 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:21.207 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:20 smithi169 conmon[87179]: cluster 2023-12-06T03:57:19.589128+0000 mgr.smithi017.mljnlu (mgr.14180) 333 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:21.615 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:22.616 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:22 smithi017 conmon[82019]: audit 2023-12-06T03:57:21.202879+0000 2023-12-06T03:57:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:22 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 334 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:22 smithi017 conmon[82019]: cluster 2023-12-06T03:57:21.589705+0000 mgr.smithi017.mljnlu (mgr.14180) 335 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:22 smithi169 conmon[87179]: audit 2023-12-06T03:57:21.202879+0000 mgr.smithi017.mljnlu (mgr.14180) 334 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:22 smithi169 conmon[87179]: cluster 2023-12-06T03:57:21.589705+0000 mgr.smithi017.mljnlu (mgr.14180) 335 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:24.604 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:24.604 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:25.050 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:24 smithi017 conmon[82019]: cluster 2023-12-06T03:57:23.590393 2023-12-06T03:57:25.050 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:24 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 336 : cluster [DBG] pgmap v258: 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-12-06T03:57:25.069 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:24 smithi169 conmon[87179]: cluster 2023-12-06T03:57:23.590393+0000 mgr.smithi017.mljnlu (mgr.14180) 336 : cluster [DBG] pgmap v258: 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-12-06T03:57:26.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:25 smithi017 conmon[82019]: audit 2023-12-06T03:57:24.599694+0000 mgr.smithi017.mljnlu (mgr.14180) 337 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:26.070 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:26.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:25 smithi169 conmon[87179]: audit 2023-12-06T03:57:24.599694+0000 mgr.smithi017.mljnlu (mgr.14180) 337 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:26 smithi017 conmon[82019]: cluster 2023-12-06T03:57:25.590898+0000 mgr.smithi017.mljnlu (mgr.14180) 338 : cluster [DBG] pgmap v259: 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-12-06T03:57:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:26 smithi169 conmon[87179]: cluster 2023-12-06T03:57:25.590898+0000 mgr.smithi017.mljnlu (mgr.14180) 338 : cluster [DBG] pgmap v259: 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-12-06T03:57:28.040 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:28.041 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:28.519 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:28 smithi017 conmon[82019]: cluster 2023-12-06T03:57:27.591448+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:57:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:28 smithi017 conmon[82019]: 14180) 339 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-12-06T03:57:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:28 smithi169 conmon[87179]: cluster 2023-12-06T03:57:27.591448+0000 mgr.smithi017.mljnlu (mgr.14180) 339 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-12-06T03:57:29.520 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:29 smithi017 conmon[82019]: audit 2023-12-06T03:57:28.035687+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:57:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:29 smithi017 conmon[82019]: 14180) 340 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:29 smithi169 conmon[87179]: audit 2023-12-06T03:57:28.035687+0000 mgr.smithi017.mljnlu (mgr.14180) 340 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:31.092 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:30 smithi017 conmon[82019]: cluster 2023-12-06T03:57:29.592172+0000 mgr.smithi017.mljnlu (mgr.14180) 341 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:30 smithi169 conmon[87179]: cluster 2023-12-06T03:57:29.592172+0000 mgr.smithi017.mljnlu (mgr.14180) 341 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:31.477 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:31.477 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:31.983 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:32.984 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:32 smithi169 conmon[87179]: audit 2023-12-06T03:57:31.472278+0000 mgr.smithi017.mljnlu (mgr.14180) 342 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:32 smithi169 conmon[87179]: cluster 2023-12-06T03:57:31.592726+0000 mgr.smithi017.mljnlu (mgr.14180) 343 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:32 smithi017 conmon[82019]: audit 2023-12-06T03:57:31.472278+0000 mgr.smithi017.mljnlu (mgr.14180) 342 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:32 smithi017 conmon[82019]: cluster 2023-12-06T03:57:31.592726+0000 mgr.smithi017.mljnlu (mgr.14180) 343 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:35.020 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:35.020 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:34 smithi169 conmon[87179]: cluster 2023-12-06T03:57:33.593492+0000 mgr.smithi017.mljnlu (mgr.14180) 344 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:35.261 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:34 smithi017 conmon[82019]: cluster 2023-12-06T03:57:33.593492+0000 mgr.smithi017.mljnlu (mgr.14180) 344 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:35.550 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:35 smithi169 conmon[87179]: audit 2023-12-06T03:57:35.015393+0000 mgr.smithi017.mljnlu (mgr.14180) 345 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:35 smithi169 conmon[87179]: 2023-12-06T03:57:36.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:35 smithi017 conmon[82019]: audit 2023-12-06T03:57:35 2023-12-06T03:57:36.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:35 smithi017 conmon[82019]: .015393+0000 mgr.smithi017.mljnlu (mgr.14180) 345 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:36.551 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:36 smithi017 conmon[82019]: cluster 2023-12-06T03:57:35.594156+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:57:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:36 smithi017 conmon[82019]: mgr.14180) 346 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:36 smithi169 conmon[87179]: cluster 2023-12-06T03:57:35.594156+0000 mgr.smithi017.mljnlu (mgr.14180) 346 : cluster [DBG] 2023-12-06T03:57:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:36 smithi169 conmon[87179]: pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:38.444 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:38.444 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:38.932 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:38 smithi169 conmon[87179]: cluster 2023-12-06T03:57:37.594994+0000 mgr.smithi017.mljnlu (mgr.14180) 347 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:38 smithi169 conmon[87179]: 2023-12-06T03:57:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:38 smithi017 conmon[82019]: cluster 2023-12-06T03:57:37.594994+0000 mgr.smithi017.mljnlu (mgr.14180) 347 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2023-12-06T03:57:39.933 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:39 smithi169 conmon[87179]: audit 2023-12-06T03:57:38.439872+0000 mgr.smithi017.mljnlu (mgr.14180) 348 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:39 smithi169 conmon[87179]: 2023-12-06T03:57:40.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:39 smithi017 conmon[82019]: audit 2023-12-06T03:57:38.439872+0000 mgr.smithi017.mljnlu (mgr.14180) 348 : audit [DBG] 2023-12-06T03:57:40.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:39 smithi017 conmon[82019]: from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:41.170 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:40 smithi017 conmon[82019]: cluster 2023-12-06T03:57:39.595803+0000 2023-12-06T03:57:41.170 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:40 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 349 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 85 B/s wr, 0 op/s 2023-12-06T03:57:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:40 smithi169 conmon[87179]: cluster 2023-12-06T03:57:39.595803+0000 mgr.smithi017.mljnlu (mgr.14180) 349 : cluster 2023-12-06T03:57:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:40 smithi169 conmon[87179]: [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 85 B/s wr, 0 op/s 2023-12-06T03:57:41.888 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:41.888 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:42.393 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:42 smithi169 conmon[87179]: cluster 2023-12-06T03:57:41.596383+0000 mgr.smithi017.mljnlu (mgr.14180) 350 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:42 smithi169 conmon[87179]: 2023-12-06T03:57:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:42 smithi169 conmon[87179]: audit 2023-12-06T03:57:41.883783+0000 mgr.smithi017.mljnlu (mgr.14180) 351 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:42 smithi017 conmon[82019]: cluster 2023-12-06T03:57:41.596383+0000 mgr.smithi017.mljnlu (mgr.14180) 350 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:42 smithi017 conmon[82019]: audit 2023-12-06T03:57:41.883783+0000 mgr.smithi017.mljnlu (mgr.14180) 351 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:43.395 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:44.954 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:44 smithi017 conmon[82019]: cluster 2023-12-06T03:57:43.597064+0000 2023-12-06T03:57:44.954 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:44 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 352 : cluster [DBG] pgmap v268: 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-12-06T03:57:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:44 smithi169 conmon[87179]: cluster 2023-12-06T03:57:43.597064+0000 mgr.smithi017.mljnlu (mgr.14180) 352 : cluster [DBG] pgmap v268: 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-12-06T03:57:45.355 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:45.356 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:45.858 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:46.859 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:46 smithi169 conmon[87179]: audit 2023-12-06T03:57:45.351547+0000 mgr.smithi017.mljnlu (mgr.14180) 353 : audit [DBG] 2023-12-06T03:57:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:46 smithi169 conmon[87179]: from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:46 smithi169 conmon[87179]: cluster 2023-12-06T03:57:45.597546+0000 mgr.smithi017.mljnlu (mgr.14180) 354 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:46 smithi017 conmon[82019]: audit 2023-12-06T03:57:45.351547+0000 mgr.smithi017.mljnlu (mgr.14180) 353 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:46 smithi017 conmon[82019]: cluster 2023-12-06T03:57:45.597546+0000 mgr.smithi017.mljnlu (mgr.14180) 354 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:48.827 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:48.827 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:49.206 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:48 smithi017 conmon[82019]: cluster 2023-12-06T03:57:47.598318+0000 2023-12-06T03:57:49.206 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:48 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 355 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:49.207 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:48 smithi169 conmon[87179]: cluster 2023-12-06T03:57:47.598318+0000 mgr.smithi017.mljnlu (mgr.14180) 355 : cluster [DBG] 2023-12-06T03:57:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:48 smithi169 conmon[87179]: pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:50.209 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:50.240 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:49 smithi017 conmon[82019]: audit 2023-12-06T03:57:48.821803+0000 mgr.smithi017.mljnlu (mgr.14180) 356 2023-12-06T03:57:50.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:49 smithi017 conmon[82019]: : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:50.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:49 smithi169 conmon[87179]: audit 2023-12-06T03:57:48.821803+0000 mgr.smithi017.mljnlu (mgr.14180) 356 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:50 smithi017 conmon[82019]: cluster 2023-12-06T03:57:49.599009+0000 mgr.smithi017.mljnlu (mgr.14180) 357 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:50 smithi169 conmon[87179]: cluster 2023-12-06T03:57:49.599009+0000 mgr.smithi017.mljnlu (mgr.14180) 357 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:52.137 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:52.137 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:52.569 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:52 smithi169 conmon[87179]: cluster 2023-12-06T03:57:51.599678+0000 mgr.smithi017.mljnlu (mgr.14180) 358 : cluster [DBG] 2023-12-06T03:57:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:52 smithi169 conmon[87179]: pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:52 smithi017 conmon[82019]: cluster 2023-12-06T03:57:51.599678+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:57:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:52 smithi017 conmon[82019]: .14180) 358 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:53.570 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:54.121 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:53 smithi017 conmon[82019]: audit 2023-12-06T03:57:52.132480+0000 mgr.smithi017.mljnlu (mgr.14180) 359 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:53 smithi169 conmon[87179]: audit 2023-12-06T03:57:52.132480+0000 mgr.smithi017.mljnlu (mgr.14180) 359 : audit [DBG] 2023-12-06T03:57:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:53 smithi169 conmon[87179]: from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:55.152 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:54 smithi017 conmon[82019]: cluster 2023-12-06T03:57:53.600545+0000 mgr.smithi017.mljnlu (mgr.14180) 360 : cluster [DBG] pgmap v273: 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-12-06T03:57:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:54 smithi169 conmon[87179]: cluster 2023-12-06T03:57:53.600545+0000 mgr.smithi017.mljnlu (mgr.14180) 360 : cluster [DBG] pgmap v273: 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-12-06T03:57:55.514 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:55.514 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:56.021 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:57:57.022 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:57:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:56 smithi169 conmon[87179]: audit 2023-12-06T03:57:55.509865+0000 mgr.smithi017.mljnlu (mgr.14180) 361 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:56 smithi169 conmon[87179]: cluster 2023-12-06T03:57:55.601214+0000 mgr.smithi017.mljnlu (mgr.14180) 362 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:56 smithi017 conmon[82019]: audit 2023-12-06T03:57:55.509865+0000 mgr.smithi017.mljnlu (mgr.14180) 361 : audit [DBG] 2023-12-06T03:57:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:56 smithi017 conmon[82019]: from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:57:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:56 smithi017 conmon[82019]: cluster 2023-12-06T03:57:55.601214+0000 mgr.smithi017.mljnlu (mgr.14180) 362 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:59.025 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:57:59.025 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:57:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:58 smithi169 conmon[87179]: cluster 2023-12-06T03:57:57.601769+0000 mgr.smithi017.mljnlu (mgr.14180) 363 : cluster 2023-12-06T03:57:59.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:58 smithi169 conmon[87179]: [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:59.267 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:58 smithi017 conmon[82019]: cluster 2023-12-06T03:57:57.601769+0000 mgr.smithi017.mljnlu (mgr.14180) 363 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:57:59.471 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:59 smithi169 conmon[87179]: audit 2023-12-06T03:57:59.020418+0000 mgr.smithi017.mljnlu (mgr.14180) 364 : audit [DBG] 2023-12-06T03:58:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:57:59 smithi169 conmon[87179]: from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:00.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:59 smithi017 conmon[82019]: audit 2023-12-06T03:57:59.020418+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:58:00.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:57:59 smithi017 conmon[82019]: 14180) 364 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:00.473 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:01.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:00 smithi017 conmon[82019]: cluster 2023-12-06T03:57:59.602455+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:58:01.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:00 smithi017 conmon[82019]: 14180) 365 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:00 smithi169 conmon[87179]: cluster 2023-12-06T03:57:59.602455+0000 mgr.smithi017.mljnlu (mgr.14180) 365 : cluster [DBG] 2023-12-06T03:58:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:00 smithi169 conmon[87179]: pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:02.439 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:02.439 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:02.922 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:02 smithi169 conmon[87179]: cluster 2023-12-06T03:58:01.603038+0000 mgr.smithi017.mljnlu (mgr.14180) 366 : cluster [DBG] 2023-12-06T03:58:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:02 smithi169 conmon[87179]: pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:02 smithi017 conmon[82019]: cluster 2023-12-06T03:58:01.603038+0000 mgr.smithi017.mljnlu (mgr.14180) 366 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:03.923 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:03 smithi169 conmon[87179]: audit 2023-12-06T03:58:02.434690+0000 mgr.smithi017.mljnlu (mgr.14180) 367 : audit [DBG] 2023-12-06T03:58:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:03 smithi169 conmon[87179]: from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:04.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:03 smithi017 conmon[82019]: audit 2023-12-06T03:58:02.434690+0000 mgr.smithi017.mljnlu (mgr.14180) 367 : 2023-12-06T03:58:04.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:03 smithi017 conmon[82019]: audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:05.216 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:04 smithi017 conmon[82019]: cluster 2023-12-06T03:58:03.603810+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:58:05.216 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:04 smithi017 conmon[82019]: mgr.14180) 368 : cluster [DBG] pgmap v278: 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-12-06T03:58:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:04 smithi169 conmon[87179]: cluster 2023-12-06T03:58:03.603810+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:58:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:04 smithi169 conmon[87179]: 368 : cluster [DBG] pgmap v278: 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-12-06T03:58:06.001 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:06.001 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:06.482 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:06 smithi169 conmon[87179]: cluster 2023-12-06T03:58:05.604314+0000 mgr.smithi017.mljnlu (mgr.14180) 369 : cluster 2023-12-06T03:58:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:06 smithi169 conmon[87179]: [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:06 smithi169 conmon[87179]: audit 2023-12-06T03:58:05.996910+0000 mgr.smithi017.mljnlu (mgr.14180) 370 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:06 smithi017 conmon[82019]: cluster 2023-12-06T03:58:05.604314+0000 mgr.smithi017.mljnlu (mgr.14180) 369 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:06 smithi017 conmon[82019]: audit 2023-12-06T03:58:05.996910+0000 mgr.smithi017.mljnlu (mgr.14180) 370 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:07.484 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:08 smithi169 conmon[87179]: cluster 2023-12-06T03:58:07.605123+0000 mgr.smithi017.mljnlu (mgr.14180) 371 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:08 smithi169 conmon[87179]: 2023-12-06T03:58:09.311 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:09.311 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:09.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:08 smithi017 conmon[82019]: cluster 2023-12-06T03:58:07.605123+0000 mgr.smithi017.mljnlu (mgr.14180) 371 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:09.835 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:10.836 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:10 smithi169 conmon[87179]: audit 2023-12-06T03:58:09.306557+0000 mgr.smithi017.mljnlu (mgr.14180) 372 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:11.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:10 smithi169 conmon[87179]: cluster 2023-12-06T03:58:09.605788+0000 mgr.smithi017.mljnlu (mgr.14180) 373 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:10 smithi017 conmon[82019]: audit 2023-12-06T03:58:09.306557+0000 mgr.smithi017.mljnlu (mgr.14180) 372 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:10 smithi017 conmon[82019]: cluster 2023-12-06T03:58:09.605788+0000 mgr.smithi017.mljnlu (mgr.14180) 373 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:12.780 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:12.781 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:13.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:12 smithi017 conmon[82019]: cluster 2023-12-06T03:58:11.606440+0000 mgr.smithi017.mljnlu (mgr.14180) 374 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:12 smithi169 conmon[87179]: cluster 2023-12-06T03:58:11.606440+0000 mgr.smithi017.mljnlu (mgr.14180) 374 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:13.298 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:13 smithi169 conmon[87179]: audit 2023-12-06T03:58:12.775528+0000 mgr.smithi017.mljnlu (mgr.14180) 375 : 2023-12-06T03:58:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:13 smithi169 conmon[87179]: audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:14.300 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:13 smithi017 conmon[82019]: audit 2023-12-06T03:58:12.775528+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:58:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:13 smithi017 conmon[82019]: ) 375 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:14 smithi169 conmon[87179]: cluster 2023-12-06T03:58:13.607176+0000 mgr.smithi017.mljnlu (mgr.14180) 376 2023-12-06T03:58:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:14 smithi169 conmon[87179]: : cluster [DBG] pgmap v283: 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-12-06T03:58:15.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:14 smithi017 conmon[82019]: cluster 2023-12-06T03:58:13.607176+0000 mgr.smithi017.mljnlu (mgr.14180) 376 : cluster [DBG] pgmap v283: 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-12-06T03:58:16.234 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:16.234 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:16.747 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:17.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:16 smithi017 conmon[82019]: cluster 2023-12-06T03:58:15.607681+0000 mgr.smithi017.mljnlu (mgr.14180) 377 : cluster 2023-12-06T03:58:17.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:16 smithi017 conmon[82019]: [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:16 smithi169 conmon[87179]: cluster 2023-12-06T03:58:15.607681+0000 mgr.smithi017.mljnlu (mgr.14180) 377 : cluster [DBG] 2023-12-06T03:58:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:16 smithi169 conmon[87179]: pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:17.749 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:17 smithi017 conmon[82019]: audit 2023-12-06T03:58: 2023-12-06T03:58:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:17 smithi017 conmon[82019]: 16.229279+0000 mgr.smithi017.mljnlu (mgr.14180) 378 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:17 smithi169 conmon[87179]: audit 2023-12-06T03:58:16.229279+0000 mgr.smithi017.mljnlu (mgr.14180) 378 : audit 2023-12-06T03:58:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:17 smithi169 conmon[87179]: [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:19.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:18 smithi017 conmon[82019]: cluster 2023-12-06T03:58:17.608389+0000 mgr.smithi017.mljnlu (mgr.14180) 379 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:18 smithi169 conmon[87179]: cluster 2023-12-06T03:58:17.608389+0000 mgr.smithi017.mljnlu (mgr.14180) 379 : cluster [DBG] 2023-12-06T03:58:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:18 smithi169 conmon[87179]: pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:19.661 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:19.661 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:20.199 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:21.200 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:21.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:20 smithi017 conmon[82019]: cluster 2023-12-06T03:58:19.609062+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:58:21.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:20 smithi017 conmon[82019]: 14180) 380 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:21.232 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:20 smithi017 conmon[82019]: audit 2023-12-06T03:58:19.655858+0000 mgr.smithi017.mljnlu (mgr.14180) 381 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:20 smithi169 conmon[87179]: cluster 2023-12-06T03:58:19.609062+0000 mgr.smithi017.mljnlu (mgr.14180) 380 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:20 smithi169 conmon[87179]: audit 2023-12-06T03:58:19.655858+0000 mgr.smithi017.mljnlu (mgr.14180) 381 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:22 smithi017 conmon[82019]: cluster 2023-12-06T03:58:21.609740 2023-12-06T03:58:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:22 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 382 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:23.113 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:23.113 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:22 smithi169 conmon[87179]: cluster 2023-12-06T03:58:21.609740+0000 mgr.smithi017.mljnlu (mgr.14180) 382 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:23.654 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:24.656 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:24 smithi017 conmon[82019]: audit 2023-12-06T03:58: 2023-12-06T03:58:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:24 smithi017 conmon[82019]: 23.108029+0000 mgr.smithi017.mljnlu (mgr.14180) 383 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:24 smithi017 conmon[82019]: cluster 2023-12-06T03:58:23.610620+0000 mgr.smithi017.mljnlu (mgr.14180) 384 : cluster [DBG] pgmap v288: 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-12-06T03:58:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:24 smithi169 conmon[87179]: audit 2023-12-06T03:58:23.108029+0000 mgr.smithi017.mljnlu (mgr.14180) 383 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:24 smithi169 conmon[87179]: cluster 2023-12-06T03:58:23.610620+0000 mgr.smithi017.mljnlu (mgr.14180) 384 : cluster [DBG] pgmap v288: 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-12-06T03:58:26.594 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:26.594 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:27.108 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:26 smithi169 conmon[87179]: cluster 2023-12-06T03:58:25.611136+0000 mgr.smithi017.mljnlu (mgr.14180) 385 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:26 smithi017 conmon[82019]: cluster 2023-12-06T03:58:25.611136+0000 mgr.smithi017.mljnlu (mgr.14180) 385 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:28.108 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:28.139 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:27 smithi017 conmon[82019]: audit 2023-12-06T03:58:26.590036+0000 mgr.smithi017.mljnlu (mgr.14180) 386 2023-12-06T03:58:28.139 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:27 smithi017 conmon[82019]: : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:27 smithi169 conmon[87179]: audit 2023-12-06T03:58:26.590036+0000 mgr.smithi017.mljnlu (mgr.14180) 386 2023-12-06T03:58:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:27 smithi169 conmon[87179]: : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:28 smithi169 conmon[87179]: cluster 2023-12-06T03:58:27.611823+0000 mgr.smithi017.mljnlu (mgr.14180) 387 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:29.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:28 smithi169 conmon[87179]: 2023-12-06T03:58:29.316 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:28 smithi017 conmon[82019]: cluster 2023-12-06T03:58:27.611823+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:58:29.316 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:28 smithi017 conmon[82019]: mgr.14180) 387 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:30.050 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:30.051 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:30.558 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:30 smithi169 conmon[87179]: cluster 2023-12-06T03:58:29.612532+0000 mgr.smithi017.mljnlu (mgr.14180) 388 2023-12-06T03:58:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:30 smithi169 conmon[87179]: : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:30 smithi017 conmon[82019]: cluster 2023-12-06T03:58:29.612532+0000 mgr.smithi017.mljnlu (mgr.14180) 388 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:31.559 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:31 smithi169 conmon[87179]: audit 2023-12-06T03:58:30.046254+0000 mgr.smithi017.mljnlu (mgr.14180) 389 : audit 2023-12-06T03:58:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:31 smithi169 conmon[87179]: [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:32.313 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:31 smithi017 conmon[82019]: audit 2023-12-06T03:58:30.046254+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:58:32.314 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:31 smithi017 conmon[82019]: 14180) 389 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:33.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:32 smithi017 conmon[82019]: cluster 2023-12-06T03:58:31.613183+0000 mgr.smithi017.mljnlu (mgr.14180) 390 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:32 smithi169 conmon[87179]: cluster 2023-12-06T03:58:31.613183+0000 mgr.smithi017.mljnlu (mgr.14180) 390 : cluster 2023-12-06T03:58:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:32 smithi169 conmon[87179]: [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:33.519 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:33.519 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:34.015 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:35.016 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:34 smithi169 conmon[87179]: audit 2023-12-06T03:58:33.514462+0000 mgr.smithi017.mljnlu (mgr.14180) 391 : audit 2023-12-06T03:58:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:34 smithi169 conmon[87179]: [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:34 smithi169 conmon[87179]: cluster 2023-12-06T03:58:33.613856+0000 mgr.smithi017.mljnlu (mgr.14180) 392 : cluster [DBG] pgmap v293: 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-12-06T03:58:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:34 smithi017 conmon[82019]: audit 2023-12-06T03:58:33.514462+0000 mgr.smithi017.mljnlu (mgr.14180) 391 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:34 smithi017 conmon[82019]: cluster 2023-12-06T03:58:33.613856+0000 mgr.smithi017.mljnlu (mgr.14180) 392 : cluster [DBG] pgmap v293: 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-12-06T03:58:37.076 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:37.076 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:36 smithi169 conmon[87179]: cluster 2023-12-06T03:58:35.614483+0000 mgr.smithi017.mljnlu (mgr.14180) 393 : cluster [DBG] 2023-12-06T03:58:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:36 smithi169 conmon[87179]: pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:37.270 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:36 smithi017 conmon[82019]: cluster 2023-12-06T03:58:35.614483+0000 mgr.smithi017.mljnlu (mgr.14180) 393 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:37.481 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:38.481 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:39.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:38 smithi017 conmon[82019]: audit 2023-12-06T03:58:37.071532+0000 mgr.smithi017.mljnlu (mgr.14180) 394 : audit [DBG] 2023-12-06T03:58:39.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:38 smithi017 conmon[82019]: from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:39.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:38 smithi017 conmon[82019]: cluster 2023-12-06T03:58:37.615351+0000 mgr.smithi017.mljnlu (mgr.14180) 395 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:38 smithi169 conmon[87179]: audit 2023-12-06T03:58:37.071532+0000 mgr.smithi017.mljnlu (mgr.14180) 394 : audit 2023-12-06T03:58:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:38 smithi169 conmon[87179]: [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:38 smithi169 conmon[87179]: cluster 2023-12-06T03:58:37.615351+0000 mgr.smithi017.mljnlu (mgr.14180) 395 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:40.448 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:40.449 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:41.034 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:40 smithi017 conmon[82019]: cluster 2023-12-06T03:58:39.616032+0000 mgr.smithi017.mljnlu (mgr.14180) 396 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:41.035 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:40 smithi169 conmon[87179]: cluster 2023-12-06T03:58:39.616032+0000 mgr.smithi017.mljnlu (mgr.14180) 396 : cluster 2023-12-06T03:58:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:40 smithi169 conmon[87179]: [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:42.036 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:41 smithi169 conmon[87179]: audit 2023-12-06T03:58:40.443537+0000 mgr.smithi017.mljnlu (mgr.14180) 397 : audit [DBG] 2023-12-06T03:58:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:41 smithi169 conmon[87179]: from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:41 smithi017 conmon[82019]: audit 2023-12-06T03:58:40.443537+0000 mgr.smithi017.mljnlu (mgr.14180) 397 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:42 smithi169 conmon[87179]: cluster 2023-12-06T03:58:41.616830+0000 mgr.smithi017.mljnlu (mgr.14180) 398 : cluster 2023-12-06T03:58:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:42 smithi169 conmon[87179]: [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:43.267 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:42 smithi017 conmon[82019]: cluster 2023-12-06T03:58:41.616830 2023-12-06T03:58:43.267 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:42 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 398 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:43.954 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:43.954 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:44.401 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:44 smithi169 conmon[87179]: cluster 2023-12-06T03:58:43.617643+0000 mgr.smithi017.mljnlu (mgr.14180) 399 : cluster [DBG] 2023-12-06T03:58:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:44 smithi169 conmon[87179]: pgmap v298: 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-12-06T03:58:45.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:44 smithi169 conmon[87179]: audit 2023-12-06T03:58:43.949683+0000 mgr.smithi017.mljnlu (mgr.14180) 400 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:44 smithi017 conmon[82019]: cluster 2023-12-06T03:58:43.617643+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:58:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:44 smithi017 conmon[82019]: 14180) 399 : cluster [DBG] pgmap v298: 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-12-06T03:58:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:44 smithi017 conmon[82019]: audit 2023-12-06T03:58:43.949683+0000 mgr.smithi017.mljnlu (mgr.14180) 400 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:45.402 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:47.246 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:47.246 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:46 smithi169 conmon[87179]: cluster 2023-12-06T03:58:45.618121+0000 mgr.smithi017.mljnlu (mgr.14180) 401 : 2023-12-06T03:58:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:46 smithi169 conmon[87179]: cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:47.267 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:46 smithi017 conmon[82019]: cluster 2023-12-06T03:58:45.618121+0000 mgr.smithi017.mljnlu (mgr.14180) 401 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:47.753 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:48.754 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:48 smithi017 conmon[82019]: audit 2023-12-06T03:58:47.241105+0000 mgr.smithi017.mljnlu (mgr.14180) 402 2023-12-06T03:58:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:48 smithi017 conmon[82019]: : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:49.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:48 smithi017 conmon[82019]: cluster 2023-12-06T03:58:47.618834+0000 mgr.smithi017.mljnlu (mgr.14180) 403 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:48 smithi169 conmon[87179]: audit 2023-12-06T03:58:47.241105+0000 mgr.smithi017.mljnlu (mgr.14180) 402 : audit 2023-12-06T03:58:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:48 smithi169 conmon[87179]: [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:48 smithi169 conmon[87179]: cluster 2023-12-06T03:58:47.618834+0000 mgr.smithi017.mljnlu (mgr.14180) 403 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:50.590 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:50.590 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:51.115 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:50 smithi169 conmon[87179]: cluster 2023-12-06T03:58:49.619566+0000 mgr.smithi017.mljnlu (mgr.14180) 404 : cluster [DBG] 2023-12-06T03:58:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:50 smithi169 conmon[87179]: pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:50 smithi017 conmon[82019]: cluster 2023-12-06T03:58:49.619566+0000 mgr.smithi017.mljnlu (mgr.14180) 404 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:52.115 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:51 smithi169 conmon[87179]: audit 2023-12-06T03:58:50.585683+0000 mgr.smithi017.mljnlu (mgr.14180) 405 : audit [DBG] 2023-12-06T03:58:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:51 smithi169 conmon[87179]: from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:51 smithi017 conmon[82019]: audit 2023-12-06T03:58:50.585683+0000 mgr.smithi017.mljnlu 2023-12-06T03:58:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:51 smithi017 conmon[82019]: (mgr.14180) 405 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:52 smithi169 conmon[87179]: cluster 2023-12-06T03:58:51.620285+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:58:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:52 smithi169 conmon[87179]: ) 406 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:52 smithi017 conmon[82019]: cluster 2023-12-06T03:58:51.620285+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:58:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:52 smithi017 conmon[82019]: mgr.14180) 406 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:54.090 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:54.090 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:54.579 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:54 smithi169 conmon[87179]: cluster 2023-12-06T03:58:53.620979+0000 mgr.smithi017.mljnlu (mgr.14180) 407 : cluster [DBG] 2023-12-06T03:58:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:54 smithi169 conmon[87179]: pgmap v303: 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-12-06T03:58:55.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:54 smithi017 conmon[82019]: cluster 2023-12-06T03:58:53.620979+0000 mgr.smithi017.mljnlu (mgr.14180) 407 : cluster [DBG] pgmap v303: 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-12-06T03:58:55.580 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:55 smithi169 conmon[87179]: audit 2023-12-06T03:58:54.085801+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:58:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:55 smithi169 conmon[87179]: 408 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:55 smithi017 conmon[82019]: audit 2023-12-06T03:58:54.085801+0000 mgr.smithi017.mljnlu (mgr.14180) 408 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:57.179 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:57 smithi017 conmon[82019]: cluster 2023-12-06T03:58:55.621659+0000 mgr.smithi017.mljnlu (mgr.14180) 409 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:57 smithi169 conmon[87179]: cluster 2023-12-06T03:58:55.621659+0000 mgr.smithi017.mljnlu (mgr.14180) 409 : cluster [DBG] 2023-12-06T03:58:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:57 smithi169 conmon[87179]: pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:57.540 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:58:57.540 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:58:58.056 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:58:59.057 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:58:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:59 smithi017 conmon[82019]: audit 2023-12-06T03:58:57.535625+0000 mgr.smithi017.mljnlu (mgr.14180) 410 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:58:59 smithi017 conmon[82019]: cluster 2023-12-06T03:58:57.622479+0000 mgr.smithi017.mljnlu (mgr.14180) 411 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:58:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:59 smithi169 conmon[87179]: audit 2023-12-06T03:58:57.535625+0000 mgr.smithi017.mljnlu (mgr.14180) 410 : audit 2023-12-06T03:58:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:59 smithi169 conmon[87179]: [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:58:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:58:59 smithi169 conmon[87179]: cluster 2023-12-06T03:58:57.622479+0000 mgr.smithi017.mljnlu (mgr.14180) 411 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:00.997 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:00.997 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:01.268 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:01 smithi017 conmon[82019]: cluster 2023-12-06T03:58:59 2023-12-06T03:59:01.268 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:01 smithi017 conmon[82019]: .623278+0000 mgr.smithi017.mljnlu (mgr.14180) 412 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:01 smithi169 conmon[87179]: cluster 2023-12-06T03:58:59.623278+0000 mgr.smithi017.mljnlu (mgr.14180) 412 : cluster 2023-12-06T03:59:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:01 smithi169 conmon[87179]: [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:01.513 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:02 smithi017 conmon[82019]: audit 2023-12-06T03:59:00.992356+0000 mgr.smithi017.mljnlu (mgr.14180) 413 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:02.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:02 smithi169 conmon[87179]: audit 2023-12-06T03:59:00.992356+0000 mgr.smithi017.mljnlu (mgr.14180) 413 : audit [DBG] 2023-12-06T03:59:02.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:02 smithi169 conmon[87179]: from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:02.515 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:03.307 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:03 smithi017 conmon[82019]: cluster 2023-12-06T03:59:01 2023-12-06T03:59:03.307 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:03 smithi017 conmon[82019]: .623864+0000 mgr.smithi017.mljnlu (mgr.14180) 414 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:03 smithi169 conmon[87179]: cluster 2023-12-06T03:59:01.623864+0000 mgr.smithi017.mljnlu (mgr.14180) 414 : 2023-12-06T03:59:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:03 smithi169 conmon[87179]: cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:04.494 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:04.494 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:04.974 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:05 smithi017 conmon[82019]: cluster 2023-12-06T03:59:03.624643+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:59:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:05 smithi017 conmon[82019]: mgr.14180) 415 : cluster [DBG] pgmap v308: 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-12-06T03:59:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:05 smithi169 conmon[87179]: cluster 2023-12-06T03:59:03.624643+0000 mgr.smithi017.mljnlu (mgr.14180) 415 : cluster 2023-12-06T03:59:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:05 smithi169 conmon[87179]: [DBG] pgmap v308: 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-12-06T03:59:05.975 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:06 smithi017 conmon[82019]: audit 2023-12-06T03:59:04. 2023-12-06T03:59:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:06 smithi017 conmon[82019]: 489431+0000 mgr.smithi017.mljnlu (mgr.14180) 416 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:06.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:06 smithi169 conmon[87179]: audit 2023-12-06T03:59:04.489431+0000 mgr.smithi017.mljnlu (mgr.14180) 416 2023-12-06T03:59:06.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:06 smithi169 conmon[87179]: : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:07 smithi017 conmon[82019]: cluster 2023-12-06T03:59:05.625224+0000 mgr.smithi017.mljnlu (mgr.14180) 417 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:07 smithi169 conmon[87179]: cluster 2023-12-06T03:59:05.625224+0000 mgr.smithi017.mljnlu (mgr.14180) 417 : cluster 2023-12-06T03:59:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:07 smithi169 conmon[87179]: [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:08.035 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:08.035 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:08.526 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:09 smithi017 conmon[82019]: cluster 2023-12-06T03:59:07.625908+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:59:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:09 smithi017 conmon[82019]: .14180) 418 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:09 smithi017 conmon[82019]: audit 2023-12-06T03:59:08.030817+0000 mgr.smithi017.mljnlu (mgr.14180) 419 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:09 smithi169 conmon[87179]: cluster 2023-12-06T03:59:07.625908+0000 mgr.smithi017.mljnlu (mgr.14180) 418 : cluster [DBG] 2023-12-06T03:59:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:09 smithi169 conmon[87179]: pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:09 smithi169 conmon[87179]: audit 2023-12-06T03:59:08.030817+0000 mgr.smithi017.mljnlu (mgr.14180) 419 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:09.527 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:11 smithi017 conmon[82019]: cluster 2023-12-06T03:59:09.626766+0000 mgr.smithi017.mljnlu (mgr.14180) 420 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:11.465 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:11.465 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:11 smithi169 conmon[87179]: cluster 2023-12-06T03:59:09.626766+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:59:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:11 smithi169 conmon[87179]: 420 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:11.886 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:12.887 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:13.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:13 smithi017 conmon[82019]: audit 2023-12-06T03:59:11.460891+0000 2023-12-06T03:59:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:13 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 421 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:13 smithi017 conmon[82019]: cluster 2023-12-06T03:59:11.627377+0000 mgr.smithi017.mljnlu (mgr.14180) 422 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:13 smithi169 conmon[87179]: audit 2023-12-06T03:59:11.460891+0000 mgr.smithi017.mljnlu (mgr.14180) 421 : audit 2023-12-06T03:59:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:13 smithi169 conmon[87179]: [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:13 smithi169 conmon[87179]: cluster 2023-12-06T03:59:11.627377+0000 mgr.smithi017.mljnlu (mgr.14180) 422 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:14.705 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:14.705 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:15.150 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:15 smithi017 conmon[82019]: cluster 2023-12-06T03:59:13.628048+0000 mgr.smithi017.mljnlu (mgr.14180) 423 : cluster [DBG] pgmap v313: 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-12-06T03:59:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:15 smithi169 conmon[87179]: cluster 2023-12-06T03:59:13.628048+0000 mgr.smithi017.mljnlu (mgr.14180) 423 : cluster 2023-12-06T03:59:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:15 smithi169 conmon[87179]: [DBG] pgmap v313: 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-12-06T03:59:16.151 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:16 smithi017 conmon[82019]: audit 2023-12-06T03:59:14.700813+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T03:59:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:16 smithi017 conmon[82019]: 14180) 424 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:16.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:16 smithi169 conmon[87179]: audit 2023-12-06T03:59:14.700813+0000 mgr.smithi017.mljnlu (mgr.14180) 424 2023-12-06T03:59:16.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:16 smithi169 conmon[87179]: : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:17 smithi017 conmon[82019]: cluster 2023-12-06T03:59:15. 2023-12-06T03:59:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:17 smithi017 conmon[82019]: 628613+0000 mgr.smithi017.mljnlu (mgr.14180) 425 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:17.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:17 smithi169 conmon[87179]: cluster 2023-12-06T03:59:15.628613+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:59:17.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:17 smithi169 conmon[87179]: 425 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:18.121 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:18.121 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:18 smithi017 conmon[82019]: cluster 2023-12-06T03:59:17.629256+0000 mgr.smithi017.mljnlu (mgr.14180) 426 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:18 smithi169 conmon[87179]: cluster 2023-12-06T03:59:17.629256+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:59:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:18 smithi169 conmon[87179]: 426 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:18.716 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:19.717 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:20.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:19 smithi169 conmon[87179]: audit 2023-12-06T03:59:18.116689+0000 mgr.smithi017.mljnlu (mgr.14180) 427 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:20.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:19 smithi169 conmon[87179]: 2023-12-06T03:59:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:19 smithi017 conmon[82019]: audit 2023-12-06T03:59:18.116689+0000 mgr.smithi017.mljnlu (mgr.14180) 427 : audit [DBG] 2023-12-06T03:59:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:19 smithi017 conmon[82019]: from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:21.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:20 smithi169 conmon[87179]: cluster 2023-12-06T03:59:19.629979+0000 mgr.smithi017.mljnlu (mgr.14180) 428 : 2023-12-06T03:59:21.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:20 smithi169 conmon[87179]: cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:20 smithi017 conmon[82019]: cluster 2023-12-06T03:59:19.629979+0000 mgr.smithi017.mljnlu 2023-12-06T03:59:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:20 smithi017 conmon[82019]: (mgr.14180) 428 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:21.598 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:21.598 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:22.087 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:23.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:22 smithi169 conmon[87179]: audit 2023-12-06T03:59:21.593875+0000 mgr.smithi017.mljnlu (mgr.14180) 429 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:23.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:22 smithi169 conmon[87179]: cluster 2023-12-06T03:59:21.630565+0000 mgr.smithi017.mljnlu (mgr.14180) 430 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:22 smithi017 conmon[82019]: audit 2023-12-06T03:59:21.593875+0000 2023-12-06T03:59:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:22 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 429 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:22 smithi017 conmon[82019]: cluster 2023-12-06T03:59:21.630565+0000 mgr.smithi017.mljnlu (mgr.14180) 430 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:23.088 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:24.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:24 smithi017 conmon[82019]: cluster 2023-12-06T03:59:23.631496+0000 mgr.smithi017.mljnlu 2023-12-06T03:59:24.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:24 smithi017 conmon[82019]: (mgr.14180) 431 : cluster [DBG] pgmap v318: 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-12-06T03:59:24.945 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:24.946 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:25.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:24 smithi169 conmon[87179]: cluster 2023-12-06T03:59:23.631496+0000 mgr.smithi017.mljnlu (mgr.14180) 431 : cluster [DBG] pgmap v318: 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-12-06T03:59:25.452 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:26.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:25 smithi169 conmon[87179]: audit 2023-12-06T03:59:24.941258+0000 mgr.smithi017.mljnlu (mgr.14180) 432 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:26.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:25 smithi017 conmon[82019]: audit 2023-12-06T03:59:24.941258+0000 mgr.smithi017.mljnlu (mgr.14180) 432 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:26.453 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:26 smithi017 conmon[82019]: cluster 2023-12-06T03:59:25.632150 2023-12-06T03:59:26.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:26 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 433 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:27.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:26 smithi169 conmon[87179]: cluster 2023-12-06T03:59:25.632150+0000 mgr.smithi017.mljnlu (mgr.14180) 433 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:59:26.844424+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: .14180) 434 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.000 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.001 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:5 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 9:26.844592+0000 mgr.smithi017.mljnlu (mgr.14180) 435 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: audit 2023-12-06T03:59:26.844905+0000 mon.smithi017 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.lwwyge"}]: dispatch 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:59:26.845632+0000 mgr.smithi017.mljnlu (mgr.14180) 436 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.002 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: audit 2023-12-06T03:59:26.850835+0000 mon.smithi017 (mon.0) 694 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:59:26.851254+0000 mgr.smithi017.mljnlu (mgr.14180) 437 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cephadm 2023-12-06T03:59:26.852422+0000 mgr.smithi017.mljnlu (mgr.14180) 438 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: cluster 2023-12-06T03:59:26.853376+0000 mgr.smithi017.mljnlu (mgr.14180) 439 : cluster [DBG] pgmap v320: 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-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: audit 2023-12-06T03:59:26.853387+0000 mon.smithi017 (mon.0) 695 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: audit 2023-12-06T03:59:26.999722+0000 mon.smithi017 (mon.0) 696 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.003 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:27 smithi017 conmon[82019]: audit 2023-12-06T03:59:27.217413+0000 mon.smithi017 (mon.0) 697 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:26.844424+0000 mgr.smithi017.mljnlu (mgr.14180) 434 : 2023-12-06T03:59:28.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T03:59:28.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:26.844592+00 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 00 mgr.smithi017.mljnlu (mgr.14180) 435 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: audit 2023-12-06T03:59:26.844905+0000 mon.smithi017 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.lwwyge"}]: dispatch 2023-12-06T03:59:28.006 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:26.845632+0000 mgr.smithi017.mljnlu (mgr.14180) 436 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.lwwyge ... 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:57:34Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:11Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: stat: stderr time="2023-12-06T03:58:49Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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-12-06T03:59:28.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: audit 2023-12-06T03:59:26.850835+0000 mon.smithi017 (mon.0) 694 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:26.851254+0000 mgr.smithi017.mljnlu (mgr.14180) 437 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:26.852422+0000 mgr.smithi017.mljnlu (mgr.14180) 438 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: cluster 2023-12-06T03:59:26.853376+0000 mgr.smithi017.mljnlu (mgr.14180) 439 : cluster [DBG] pgmap v320: 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-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: audit 2023-12-06T03:59:26.853387+0000 mon.smithi017 (mon.0) 695 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: audit 2023-12-06T03:59 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: :26.999722+0000 mon.smithi017 (mon.0) 696 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: 03:59:27.217413+0000 mon.smithi017 (mon.0 2023-12-06T03:59:28.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:27 smithi169 conmon[87179]: ) 697 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:28.402 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:28.402 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:21.363028Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:21.363181Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:21.363255Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:21.363323Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:21.363387Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:21.363638Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:28.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:28 smithi017 conmon[82019]: cluster 2023-12-06T03:59:27.849124+0000 mon.smithi017 (mon.0) 698 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T03:59:28.911 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:29.779 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:28 smithi169 conmon[87179]: cluster 2023-12-06T03:59:27.849124+0000 mon.smithi017 (mon.0) 698 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T03:59:30.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:29 smithi169 conmon[87179]: audit 2023-12-06T03:59:28.397569+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T03:59:30.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:29 smithi169 conmon[87179]: 440 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:30.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:29 smithi169 conmon[87179]: cluster 2023-12-06T03:59:28.854220+0000 mgr.smithi017.mljnlu (mgr.14180) 441 : cluster [DBG] pgmap v321: 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-12-06T03:59:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:29 smithi017 conmon[82019]: audit 2023-12-06T03:59:28.397569+0000 2023-12-06T03:59:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:29 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 440 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:29 smithi017 conmon[82019]: cluster 2023-12-06T03:59:28.854220+0000 mgr.smithi017.mljnlu (mgr.14180) 441 : cluster [DBG] pgmap v321: 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-12-06T03:59:30.779 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:30 smithi017 conmon[82019]: audit 2023-12-06T03:59:29.808206+0000 mon.smithi017 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:30 smithi169 conmon[87179]: audit 2023-12-06T03:59:29.808206+0000 mon.smithi017 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:32.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:31 smithi017 conmon[82019]: cluster 2023-12-06T03:59:30.854812 2023-12-06T03:59:32.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:31 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 442 : cluster [DBG] pgmap v322: 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-12-06T03:59:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:31 smithi169 conmon[87179]: cluster 2023-12-06T03:59:30.854812+0000 mgr.smithi017.mljnlu (mgr.14180) 442 : cluster 2023-12-06T03:59:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:31 smithi169 conmon[87179]: [DBG] pgmap v322: 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-12-06T03:59:33.018 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:33.018 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:54:25.059227Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:54:25.059294Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:54:25.059358Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:54:25.059150Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:54:25.058985Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:54:25.059421Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:54:25.059546Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:54:25.059484Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:54:25.059792Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:33.541 INFO:tasks.cephadm:nfs.foo has 0/1 2023-12-06T03:59:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:33 smithi169 conmon[87179]: cluster 2023-12-06T03:59:32.855550+0000 mgr.smithi017.mljnlu (mgr.14180) 443 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 182 B/s rd, 0 op/s 2023-12-06T03:59:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:33 smithi169 conmon[87179]: audit 2023-12-06T03:59:33.013733+0000 mgr.smithi017.mljnlu (mgr.14180) 444 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:34.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:33 smithi017 conmon[82019]: cluster 2023-12-06T03:59:32.855550+0000 mgr.smithi017.mljnlu (mgr.14180) 443 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 182 B/s rd, 0 op/s 2023-12-06T03:59:34.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:33 smithi017 conmon[82019]: audit 2023-12-06T03:59:33.013733+0000 mgr.smithi017.mljnlu (mgr.14180) 444 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:34.542 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:36.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12-06T03:59:34.697050 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 700 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: cluster 2023-12-06T03:59:34.856382+0000 mgr.smithi017.mljnlu (mgr.14180) 445 : cluster [DBG] pgmap v324: 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-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12-06T03:59:35.164921+0000 mon.smithi017 (mon 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: .0) 701 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: 06T03:59:35.165651+0000 mon.smithi017 (mon 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: .0) 702 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: 06T03:59:35.170162+0000 mon.smithi017 (mon 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: .0) 703 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: 06T03:59:35.175195+0000 mon.smithi017 (mon 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: .0) 704 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:59:36.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: audit 2023-12- 2023-12-06T03:59:36.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: 06T03:59:35.182681+0000 mon.smithi017 ( 2023-12-06T03:59:36.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:35 smithi169 conmon[87179]: mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:34.697050+0000 mon.smithi017 (mon.0) 700 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: cluster 2023-12-06T03:59:34.856382+0000 mgr.smithi017.mljnlu (mgr.14180) 445 : cluster [DBG] pgmap v324: 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-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:35.164921+0000 mon.smithi017 (mon.0) 701 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:35.165651+0000 mon.smithi017 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:35.170162+0000 mon.smithi017 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:35.175195+0000 mon.smithi017 (mon.0) 704 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T03:59:36.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:35 smithi017 conmon[82019]: audit 2023-12-06T03:59:35.182681+0000 mon.smithi017 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T03:59:36.508 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:36.508 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:36.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:36 smithi017 conmon[82019]: cluster 2023-12-06T03:59:35.170742+0000 2023-12-06T03:59:36.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:36 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 446 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 107 B/s rd, 0 op/s 2023-12-06T03:59:36.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:36 smithi017 conmon[82019]: cephadm 2023-12-06T03:59:35.184991+0000 mgr.smithi017.mljnlu (mgr.14180) 447 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.ezmkxm on smithi169 2023-12-06T03:59:36.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:36 smithi017 conmon[82019]: cluster 2023-12-06T03:59:35.695257+0000 mon.smithi017 (mon.0) 706 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T03:59:36.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:36 smithi017 conmon[82019]: cluster 2023-12-06T03:59:35.695288+0000 mon.smithi017 (mon.0) 707 : cluster [INF] Cluster is now healthy 2023-12-06T03:59:36.996 INFO:tasks.cephadm:nfs.foo has 1/1 2023-12-06T03:59:36.997 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-12-06T03:59:37.006 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2023-12-06T03:59:37.007 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:37.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:36 smithi169 conmon[87179]: cluster 2023-12-06T03:59:35.170742+0000 mgr.smithi017.mljnlu (mgr.14180) 446 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 107 B/s rd, 0 op/s 2023-12-06T03:59:37.007 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:36 smithi169 conmon[87179]: 2023-12-06T03:59:37.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:36 smithi169 conmon[87179]: cephadm 2023-12-06T03:59:35.184991+0000 mgr.smithi017.mljnlu (mgr.14180) 447 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.ezmkxm on smithi169 2023-12-06T03:59:37.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:36 smithi169 conmon[87179]: cluster 2023-12-06T03:59:35.695257+0000 mon.smithi017 (mon.0) 706 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T03:59:37.008 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:36 smithi169 conmon[87179]: cluster 2023-12-06T03:59:35.695288+0000 mon.smithi017 (mon.0) 707 : cluster [INF] Cluster is now healthy 2023-12-06T03:59:37.969 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:37 smithi017 conmon[82019]: audit 2023-12-06T03:59:36.503960+0000 mgr.smithi017.mljnlu (mgr.14180) 448 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:38.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:37 smithi169 conmon[87179]: audit 2023-12-06T03:59:36.503960+0000 mgr.smithi017.mljnlu (mgr.14180) 448 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:38 smithi169 conmon[87179]: cluster 2023-12-06T03:59:37.171346+0000 mgr.smithi017.mljnlu (mgr.14180) 449 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:39.019 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:39.019 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:39.046 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:38 smithi017 conmon[82019]: cluster 2023-12-06T03:59:37.171346+0000 mgr.smithi017.mljnlu (mgr.14180) 449 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:39.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:40.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:39 smithi169 conmon[87179]: audit 2023-12-06T03:59:39.014203+0000 mgr.smithi017.mljnlu (mgr.14180) 450 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:40.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:39 smithi017 conmon[82019]: audit 2023-12-06T03:59:39.014203+0000 mgr.smithi017.mljnlu (mgr.14180) 450 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:40.444 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:40.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:40 smithi017 conmon[82019]: cluster 2023-12-06T03:59:39.172018+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T03:59:40.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:40 smithi017 conmon[82019]: .14180) 451 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:40 smithi169 conmon[87179]: cluster 2023-12-06T03:59:39.172018+0000 mgr.smithi017.mljnlu (mgr.14180) 451 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:42.276 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:42.276 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:42.696 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:43.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:42 smithi169 conmon[87179]: cluster 2023-12-06T03:59:41.172562+0000 mgr.smithi017.mljnlu (mgr.14180) 452 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:43.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:42 smithi017 conmon[82019]: cluster 2023-12-06T03:59:41.172562+0000 mgr.smithi017.mljnlu (mgr.14180) 452 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:43.697 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:44.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:43 smithi169 conmon[87179]: audit 2023-12-06T03:59:42.271639+0000 mgr.smithi017.mljnlu (mgr.14180) 453 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:43 smithi017 conmon[82019]: audit 2023-12-06T03:59:42.271639+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:59:44.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:43 smithi017 conmon[82019]: ) 453 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:44 smithi169 conmon[87179]: cluster 2023-12-06T03:59:43.173566+0000 mgr.smithi017.mljnlu (mgr.14180) 454 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:45.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:44 smithi017 conmon[82019]: cluster 2023-12-06T03:59:43.173566+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:59:45.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:44 smithi017 conmon[82019]: mgr.14180) 454 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:45.426 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:45.426 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:45.962 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:46.962 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:46.994 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:46 smithi017 conmon[82019]: cluster 2023-12-06T03:59:45.174143+0000 mgr.smithi017.mljnlu (mgr.14180) 455 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:46.994 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:46 smithi017 conmon[82019]: audit 2023-12-06T03:59:45.421252+0000 mgr.smithi017.mljnlu (mgr.14180) 456 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:46 smithi169 conmon[87179]: cluster 2023-12-06T03:59:45.174143+0000 mgr.smithi017.mljnlu (mgr.14180) 455 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2023-12-06T03:59:47.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:46 smithi169 conmon[87179]: audit 2023-12-06T03:59:45.421252+0000 mgr.smithi017.mljnlu (mgr.14180) 456 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:48 smithi017 conmon[82019]: cluster 2023-12-06T03:59:47.174747+0000 mgr.smithi017.mljnlu ( 2023-12-06T03:59:48.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:48 smithi017 conmon[82019]: mgr.14180) 457 : 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-12-06T03:59:48.944 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:48.944 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:49.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:48 smithi169 conmon[87179]: cluster 2023-12-06T03:59:47.174747+0000 mgr.smithi017.mljnlu (mgr.14180) 457 : 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-12-06T03:59:49.425 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:50.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:49 smithi169 conmon[87179]: audit 2023-12-06T03:59:48.939319+0000 mgr.smithi017.mljnlu (mgr.14180) 458 : audit [DBG] 2023-12-06T03:59:50.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:49 smithi169 conmon[87179]: from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:50.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:49 smithi017 conmon[82019]: audit 2023-12-06T03:59:48.939319+0000 mgr.smithi017.mljnlu (mgr.14180) 458 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:50.425 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:50 smithi169 conmon[87179]: cluster 2023-12-06T03:59:49.175654+0000 mgr.smithi017.mljnlu (mgr.14180) 459 : 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-12-06T03:59:51.011 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:50 smithi017 conmon[82019]: cluster 2023-12-06T03:59:49.175654+0000 mgr.smithi017.mljnlu 2023-12-06T03:59:51.011 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:50 smithi017 conmon[82019]: (mgr.14180) 459 : 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-12-06T03:59:52.362 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:52.362 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:52.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:52 smithi169 conmon[87179]: cluster 2023-12-06T03:59:51.176117+0000 mgr.smithi017.mljnlu (mgr.14180) 460 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:52 smithi017 conmon[82019]: cluster 2023-12-06T03:59:51.176117+0000 2023-12-06T03:59:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:52 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 460 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T03:59:53.878 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:54.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:53 smithi169 conmon[87179]: audit 2023-12-06T03:59:52.357278+0000 mgr.smithi017.mljnlu (mgr.14180) 461 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:53 smithi017 conmon[82019]: audit 2023-12-06T03:59:52.357278+0000 mgr.smithi017.mljnlu (mgr.14180) 461 2023-12-06T03:59:54.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:53 smithi017 conmon[82019]: : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:54.999 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:54 smithi017 conmon[82019]: cluster 2023-12-06T03:59:53.176944+0000 mgr.smithi017.mljnlu (mgr.14180) 462 : cluster [DBG] pgmap v334: 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-12-06T03:59:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:54 smithi169 conmon[87179]: cluster 2023-12-06T03:59:53.176944+0000 mgr.smithi017.mljnlu (mgr.14180) 462 : cluster 2023-12-06T03:59:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:54 smithi169 conmon[87179]: [DBG] pgmap v334: 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-12-06T03:59:55.703 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:55.703 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:56.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T03:59:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:56 smithi017 conmon[82019]: cluster 2023-12-06T03:59:55.177709+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T03:59:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:56 smithi017 conmon[82019]: ) 463 : 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-12-06T03:59:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:56 smithi017 conmon[82019]: audit 2023-12-06T03:59:55.698782+0000 mgr.smithi017.mljnlu (mgr.14180) 464 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:57.230 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T03:59:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:56 smithi169 conmon[87179]: cluster 2023-12-06T03:59:55.177709+0000 mgr.smithi017.mljnlu (mgr.14180) 463 : 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-12-06T03:59:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:56 smithi169 conmon[87179]: audit 2023-12-06T03:59:55.698782+0000 mgr.smithi017.mljnlu (mgr.14180) 464 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T03:59:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 03:59:58 smithi017 conmon[82019]: cluster 2023-12-06T03:59:57.178476+0000 mgr.smithi017.mljnlu (mgr.14180) 465 : 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-12-06T03:59:59.085 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T03:59:59.085 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T03:59:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:58 smithi169 conmon[87179]: cluster 2023-12-06T03:59:57.178476+0000 mgr.smithi017.mljnlu (mgr.14180) 465 : cluster 2023-12-06T03:59:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 03:59:58 smithi169 conmon[87179]: [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-12-06T03:59:59.495 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:00.496 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:00 smithi017 conmon[82019]: audit 2023-12-06T03:59:59.080240+0000 2023-12-06T04:00:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:00 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 466 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:00 smithi017 conmon[82019]: cluster 2023-12-06T03:59:59.179213+0000 mgr.smithi017.mljnlu (mgr.14180) 467 : 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-12-06T04:00:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:00 smithi017 conmon[82019]: cluster 2023-12-06T04:00:00.000194+0000 mon.smithi017 (mon.0) 708 : cluster [INF] overall HEALTH_OK 2023-12-06T04:00:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:00 smithi169 conmon[87179]: audit 2023-12-06T03:59:59.080240+0000 mgr.smithi017.mljnlu (mgr.14180) 466 : audit [DBG] 2023-12-06T04:00:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:00 smithi169 conmon[87179]: from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:00 smithi169 conmon[87179]: cluster 2023-12-06T03:59:59.179213+0000 mgr.smithi017.mljnlu (mgr.14180) 467 : 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-12-06T04:00:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:00 smithi169 conmon[87179]: cluster 2023-12-06T04:00:00.000194+0000 mon.smithi017 (mon.0) 708 : cluster [INF] overall HEALTH_OK 2023-12-06T04:00:02.490 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:02.490 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:02.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:02 smithi017 conmon[82019]: cluster 2023-12-06T04:00:01.179674+0000 mgr.smithi017.mljnlu (mgr.14180) 468 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:02.963 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:02 smithi169 conmon[87179]: cluster 2023-12-06T04:00:01.179674+0000 mgr.smithi017.mljnlu (mgr.14180) 468 : cluster 2023-12-06T04:00:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:02 smithi169 conmon[87179]: [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:03.964 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:04.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:03 smithi017 conmon[82019]: audit 2023-12-06T04:00:02.485335+0000 mgr.smithi017.mljnlu (mgr.14180) 469 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:03 smithi169 conmon[87179]: audit 2023-12-06T04:00:02.485335+0000 mgr.smithi017.mljnlu (mgr.14180) 469 : 2023-12-06T04:00:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:03 smithi169 conmon[87179]: audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:04.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:04 smithi017 conmon[82019]: cluster 2023-12-06T04:00:03.180545+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:00:04.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:04 smithi017 conmon[82019]: mgr.14180) 470 : cluster [DBG] pgmap v339: 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-12-06T04:00:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:04 smithi169 conmon[87179]: cluster 2023-12-06T04:00:03.180545+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:00:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:04 smithi169 conmon[87179]: mgr.14180) 470 : cluster [DBG] pgmap v339: 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-12-06T04:00:05.793 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:05.793 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:06.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:06 smithi017 conmon[82019]: cluster 2023-12-06T04:00:05.181251+0000 mgr.smithi017.mljnlu (mgr.14180) 471 : 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-12-06T04:00:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:06 smithi017 conmon[82019]: audit 2023-12-06T04:00:05.782751+0000 mgr.smithi017.mljnlu (mgr.14180) 472 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:07.215 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:06 smithi169 conmon[87179]: cluster 2023-12-06T04:00:05.181251+0000 mgr.smithi017.mljnlu (mgr.14180) 471 : cluster 2023-12-06T04:00:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:06 smithi169 conmon[87179]: [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-12-06T04:00:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:06 smithi169 conmon[87179]: audit 2023-12-06T04:00:05.782751+0000 mgr.smithi017.mljnlu (mgr.14180) 472 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:08 smithi017 conmon[82019]: cluster 2023-12-06T04:00:07.181888+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:00:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:08 smithi017 conmon[82019]: ) 473 : 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-12-06T04:00:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:08 smithi169 conmon[87179]: cluster 2023-12-06T04:00:07.181888+0000 mgr.smithi017.mljnlu (mgr.14180) 473 : cluster 2023-12-06T04:00:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:08 smithi169 conmon[87179]: [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-12-06T04:00:09.281 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:09.281 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:09.666 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:10.667 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:10 smithi017 conmon[82019]: cluster 2023-12-06T04:00:09.182836+0000 mgr.smithi017.mljnlu (mgr.14180) 474 : 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-12-06T04:00:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:10 smithi017 conmon[82019]: audit 2023-12-06T04:00:09.276867+0000 mgr.smithi017.mljnlu (mgr.14180) 475 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:10 smithi169 conmon[87179]: cluster 2023-12-06T04:00:09.182836+0000 mgr.smithi017.mljnlu (mgr.14180) 474 : cluster 2023-12-06T04:00:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:10 smithi169 conmon[87179]: [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-12-06T04:00:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:10 smithi169 conmon[87179]: audit 2023-12-06T04:00:09.276867+0000 mgr.smithi017.mljnlu (mgr.14180) 475 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:12.597 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:12.597 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:12.970 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:12 smithi017 conmon[82019]: cluster 2023-12-06T04:00:11.183442+0000 mgr.smithi017.mljnlu (mgr.14180) 476 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:13.030 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:12 smithi169 conmon[87179]: cluster 2023-12-06T04:00:11.183442+0000 mgr.smithi017.mljnlu (mgr.14180) 476 : cluster [DBG] 2023-12-06T04:00:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:12 smithi169 conmon[87179]: pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:14.031 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:14.062 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:13 smithi017 conmon[82019]: audit 2023-12-06T04:00:12.592217+0000 mgr.smithi017.mljnlu (mgr.14180) 477 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:13 smithi169 conmon[87179]: audit 2023-12-06T04:00:12.592217+0000 mgr.smithi017.mljnlu (mgr.14180) 477 : audit 2023-12-06T04:00:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:13 smithi169 conmon[87179]: [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:14 smithi017 conmon[82019]: cluster 2023-12-06T04:00:13.184077+0000 2023-12-06T04:00:14.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:14 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 478 : cluster [DBG] pgmap v344: 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-12-06T04:00:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:14 smithi169 conmon[87179]: cluster 2023-12-06T04:00:13.184077+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:00:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:14 smithi169 conmon[87179]: ) 478 : cluster [DBG] pgmap v344: 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-12-06T04:00:15.889 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:15.889 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:16.293 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:16 smithi017 conmon[82019]: cluster 2023-12-06T04:00:15.184722+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:00:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:16 smithi017 conmon[82019]: 479 : 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-12-06T04:00:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:16 smithi017 conmon[82019]: audit 2023-12-06T04:00:15.883866+0000 mgr.smithi017.mljnlu (mgr.14180) 480 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:16 smithi169 conmon[87179]: cluster 2023-12-06T04:00:15.184722+0000 mgr.smithi017.mljnlu (mgr.14180) 479 : cluster [DBG] 2023-12-06T04:00:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:16 smithi169 conmon[87179]: 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-12-06T04:00:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:16 smithi169 conmon[87179]: audit 2023-12-06T04:00:15.883866+0000 mgr.smithi017.mljnlu (mgr.14180) 480 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:17.294 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:18.872 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:18 smithi017 conmon[82019]: cluster 2023-12-06T04:00:17. 2023-12-06T04:00:18.872 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:18 smithi017 conmon[82019]: 185466+0000 mgr.smithi017.mljnlu (mgr.14180) 481 : 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-12-06T04:00:19.210 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:19.210 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:18 smithi169 conmon[87179]: cluster 2023-12-06T04:00:17.185466+0000 mgr.smithi017.mljnlu (mgr.14180) 481 : cluster 2023-12-06T04:00:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:18 smithi169 conmon[87179]: [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-12-06T04:00:19.658 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:20.660 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:20 smithi017 conmon[82019]: cluster 2023-12-06T04:00:19.186173+0000 mgr.smithi017.mljnlu (mgr.14180) 482 : 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-12-06T04:00:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:20 smithi017 conmon[82019]: audit 2023-12-06T04:00:19.205862+0000 mgr.smithi017.mljnlu (mgr.14180) 483 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:20 smithi169 conmon[87179]: cluster 2023-12-06T04:00:19.186173+0000 mgr.smithi017.mljnlu (mgr.14180) 482 : cluster 2023-12-06T04:00:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:20 smithi169 conmon[87179]: [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-12-06T04:00:21.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:20 smithi169 conmon[87179]: audit 2023-12-06T04:00:19.205862+0000 mgr.smithi017.mljnlu (mgr.14180) 483 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:22.619 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:22.619 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:22.989 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:22 smithi017 conmon[82019]: cluster 2023-12-06T04:00:21.186683+0000 mgr.smithi017.mljnlu 2023-12-06T04:00:22.989 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:22 smithi017 conmon[82019]: (mgr.14180) 484 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:23.013 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:22 smithi169 conmon[87179]: cluster 2023-12-06T04:00:21.186683+0000 mgr.smithi017.mljnlu (mgr.14180) 484 : cluster 2023-12-06T04:00:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:22 smithi169 conmon[87179]: [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:24.013 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:24.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:23 smithi017 conmon[82019]: audit 2023-12-06T04:00:22.613920+0000 mgr.smithi017.mljnlu (mgr.14180) 485 : audit [DBG] 2023-12-06T04:00:24.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:23 smithi017 conmon[82019]: from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:23 smithi169 conmon[87179]: audit 2023-12-06T04:00:22.613920+0000 mgr.smithi017.mljnlu (mgr.14180) 485 : audit 2023-12-06T04:00:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:23 smithi169 conmon[87179]: [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:24.948 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:24 smithi017 conmon[82019]: cluster 2023-12-06T04:00:23.187373+0000 mgr.smithi017.mljnlu (mgr.14180) 486 : cluster [DBG] pgmap v349: 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-12-06T04:00:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:24 smithi169 conmon[87179]: cluster 2023-12-06T04:00:23.187373+0000 mgr.smithi017.mljnlu (mgr.14180) 486 : 2023-12-06T04:00:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:24 smithi169 conmon[87179]: cluster [DBG] pgmap v349: 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-12-06T04:00:25.868 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:25.868 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:26.375 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:26 smithi017 conmon[82019]: cluster 2023-12-06T04:00:25.188167+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:00:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:26 smithi017 conmon[82019]: ) 487 : 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-12-06T04:00:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:26 smithi017 conmon[82019]: audit 2023-12-06T04:00:25.863386+0000 mgr.smithi017.mljnlu (mgr.14180) 488 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:26 smithi169 conmon[87179]: cluster 2023-12-06T04:00:25.188167+0000 mgr.smithi017.mljnlu (mgr.14180) 487 : cluster [DBG] 2023-12-06T04:00:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:26 smithi169 conmon[87179]: 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-12-06T04:00:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:26 smithi169 conmon[87179]: audit 2023-12-06T04:00:25.863386+0000 mgr.smithi017.mljnlu (mgr.14180) 488 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:27.377 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:28 smithi017 conmon[82019]: cluster 2023-12-06T04:00:27.188760+0000 mgr.smithi017.mljnlu (mgr.14180) 489 : 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-12-06T04:00:29.188 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:29.189 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:28 smithi169 conmon[87179]: cluster 2023-12-06T04:00:27.188760+0000 mgr.smithi017.mljnlu (mgr.14180) 489 : 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-12-06T04:00:29.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:30.629 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:30 smithi017 conmon[82019]: audit 2023-12-06T04:00:29.184232+0000 2023-12-06T04:00:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:30 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 490 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:30 smithi017 conmon[82019]: cluster 2023-12-06T04:00:29.189450+0000 mgr.smithi017.mljnlu (mgr.14180) 491 : 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-12-06T04:00:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:30 smithi169 conmon[87179]: audit 2023-12-06T04:00:29.184232+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:00:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:30 smithi169 conmon[87179]: 14180) 490 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:30 smithi169 conmon[87179]: cluster 2023-12-06T04:00:29.189450+0000 mgr.smithi017.mljnlu (mgr.14180) 491 : 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-12-06T04:00:32.483 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:32.483 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:32.994 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:32 smithi169 conmon[87179]: cluster 2023-12-06T04:00:31.189895+0000 mgr.smithi017.mljnlu (mgr.14180) 492 : 2023-12-06T04:00:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:32 smithi169 conmon[87179]: cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:32 smithi017 conmon[82019]: cluster 2023-12-06T04:00:31.189895+0000 mgr.smithi017.mljnlu (mgr.14180) 492 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:33.995 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:33 smithi169 conmon[87179]: audit 2023-12-06T04:00:32.478913+0000 mgr.smithi017.mljnlu (mgr.14180) 493 : audit 2023-12-06T04:00:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:33 smithi169 conmon[87179]: [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:34.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:33 smithi017 conmon[82019]: audit 2023-12-06T04:00:32.478913+0000 mgr.smithi017.mljnlu (mgr.14180) 493 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:35.156 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:34 smithi017 conmon[82019]: cluster 2023-12-06T04:00:33.190615+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:00:35.156 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:34 smithi017 conmon[82019]: mgr.14180) 494 : cluster [DBG] pgmap v354: 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-12-06T04:00:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:34 smithi169 conmon[87179]: cluster 2023-12-06T04:00:33.190615+0000 mgr.smithi017.mljnlu (mgr.14180) 494 : cluster [DBG] 2023-12-06T04:00:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:34 smithi169 conmon[87179]: pgmap v354: 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-12-06T04:00:35.762 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:35.762 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:36.157 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:37.157 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:37.188 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:36 smithi017 conmon[82019]: cluster 2023-12-06T04:00:35.191235+0000 mgr.smithi017.mljnlu (mgr.14180) 495 : 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-12-06T04:00:37.188 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:36 smithi017 conmon[82019]: audit 2023-12-06T04:00:35.757500+0000 mgr.smithi017.mljnlu (mgr.14180) 496 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:36 smithi169 conmon[87179]: cluster 2023-12-06T04:00:35.191235+0000 mgr.smithi017.mljnlu (mgr.14180) 495 : cluster 2023-12-06T04:00:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:36 smithi169 conmon[87179]: [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-12-06T04:00:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:36 smithi169 conmon[87179]: audit 2023-12-06T04:00:35.757500+0000 mgr.smithi017.mljnlu (mgr.14180) 496 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:38 smithi017 conmon[82019]: cluster 2023-12-06T04:00:37.191870+0000 2023-12-06T04:00:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:38 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 497 : 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-12-06T04:00:39.107 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:39.107 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:38 smithi169 conmon[87179]: cluster 2023-12-06T04:00:37.191870+0000 mgr.smithi017.mljnlu (mgr.14180) 497 : cluster 2023-12-06T04:00:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:38 smithi169 conmon[87179]: [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-12-06T04:00:39.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:40.619 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:40 smithi017 conmon[82019]: audit 2023-12-06T04:00:39.102738+0000 mgr.smithi017.mljnlu (mgr.14180) 498 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:40 smithi017 conmon[82019]: cluster 2023-12-06T04:00:39.192542+0000 mgr.smithi017.mljnlu (mgr.14180) 499 : 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-12-06T04:00:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:40 smithi169 conmon[87179]: audit 2023-12-06T04:00:39.102738+0000 mgr.smithi017.mljnlu (mgr.14180) 498 : audit 2023-12-06T04:00:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:40 smithi169 conmon[87179]: [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:40 smithi169 conmon[87179]: cluster 2023-12-06T04:00:39.192542+0000 mgr.smithi017.mljnlu (mgr.14180) 499 : 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-12-06T04:00:42.441 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:42.441 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:42.971 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:42 smithi169 conmon[87179]: cluster 2023-12-06T04:00:41.193129+0000 mgr.smithi017.mljnlu (mgr.14180) 500 : cluster 2023-12-06T04:00:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:42 smithi169 conmon[87179]: [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:42 smithi017 conmon[82019]: cluster 2023-12-06T04:00:41.193129+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:00:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:42 smithi017 conmon[82019]: mgr.14180) 500 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:43.971 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:43 smithi169 conmon[87179]: audit 2023-12-06T04:00:42.436407+0000 mgr.smithi017.mljnlu (mgr.14180) 501 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:43 smithi169 conmon[87179]: 2023-12-06T04:00:44.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:43 smithi017 conmon[82019]: audit 2023-12-06T04:00:42.436407+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:00:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:43 smithi017 conmon[82019]: ) 501 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:45.012 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:44 smithi017 conmon[82019]: cluster 2023-12-06T04:00:43.193938+0000 mgr.smithi017.mljnlu (mgr.14180) 502 : cluster [DBG] pgmap v359: 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-12-06T04:00:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:44 smithi169 conmon[87179]: cluster 2023-12-06T04:00:43.193938+0000 mgr.smithi017.mljnlu (mgr.14180) 502 : cluster [DBG] pgmap v359: 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-12-06T04:00:45.942 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:45.942 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:46.432 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:46 smithi169 conmon[87179]: cluster 2023-12-06T04:00:45.194500+0000 mgr.smithi017.mljnlu (mgr.14180) 503 : 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-12-06T04:00:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:46 smithi169 conmon[87179]: audit 2023-12-06T04:00:45.937146+0000 mgr.smithi017.mljnlu (mgr.14180) 504 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:46 smithi017 conmon[82019]: cluster 2023-12-06T04:00:45.194500+0000 2023-12-06T04:00:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:46 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 503 : 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-12-06T04:00:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:46 smithi017 conmon[82019]: audit 2023-12-06T04:00:45.937146+0000 mgr.smithi017.mljnlu (mgr.14180) 504 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:47.433 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:48.872 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:48 smithi017 conmon[82019]: cluster 2023-12-06T04:00:47.195125+0000 mgr.smithi017.mljnlu (mgr.14180) 505 : 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-12-06T04:00:49.249 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:49.249 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:48 smithi169 conmon[87179]: cluster 2023-12-06T04:00:47.195125+0000 mgr.smithi017.mljnlu (mgr.14180) 505 : 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-12-06T04:00:49.686 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:50.687 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:50 smithi017 conmon[82019]: cluster 2023-12-06T04:00 2023-12-06T04:00:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:50 smithi017 conmon[82019]: :49.195813+0000 mgr.smithi017.mljnlu (mgr.14180) 506 : 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-12-06T04:00:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:50 smithi017 conmon[82019]: audit 2023-12-06T04:00:49.244037+0000 mgr.smithi017.mljnlu (mgr.14180) 507 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:50 smithi169 conmon[87179]: cluster 2023-12-06T04:00:49.195813+0000 mgr.smithi017.mljnlu (mgr.14180) 506 : 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-12-06T04:00:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:50 smithi169 conmon[87179]: 2023-12-06T04:00:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:50 smithi169 conmon[87179]: audit 2023-12-06T04:00:49.244037+0000 mgr.smithi017.mljnlu (mgr.14180) 507 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:52.560 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:52.560 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:53.047 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:52 smithi169 conmon[87179]: cluster 2023-12-06T04:00:51.196540+0000 mgr.smithi017.mljnlu (mgr.14180) 508 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:52 smithi017 conmon[82019]: cluster 2023-12-06T04:00:51.196540+0000 mgr.smithi017.mljnlu (mgr.14180) 508 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:00:54.048 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:53 smithi169 conmon[87179]: audit 2023-12-06T04:00:52.555356+0000 mgr.smithi017.mljnlu (mgr.14180) 509 : 2023-12-06T04:00:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:53 smithi169 conmon[87179]: audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:53 smithi017 conmon[82019]: audit 2023-12-06T04:00:52.555356+0000 mgr.smithi017.mljnlu (mgr.14180) 509 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:55.146 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:54 smithi017 conmon[82019]: cluster 2023-12-06T04:00:53.197275+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:00:55.146 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:54 smithi017 conmon[82019]: 14180) 510 : cluster [DBG] pgmap v364: 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-12-06T04:00:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:54 smithi169 conmon[87179]: cluster 2023-12-06T04:00:53.197275+0000 mgr.smithi017.mljnlu (mgr.14180) 510 : cluster 2023-12-06T04:00:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:54 smithi169 conmon[87179]: [DBG] pgmap v364: 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-12-06T04:00:55.813 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:55.813 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:56.196 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:00:57.198 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:00:57.229 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:56 smithi017 conmon[82019]: cluster 2023-12-06T04:00:55.197854+0000 mgr.smithi017.mljnlu (mgr.14180) 511 : 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-12-06T04:00:57.229 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:56 smithi017 conmon[82019]: audit 2023-12-06T04:00:55.807944+0000 mgr.smithi017.mljnlu (mgr.14180) 512 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:56 smithi169 conmon[87179]: cluster 2023-12-06T04:00:55.197854+0000 mgr.smithi017.mljnlu (mgr.14180) 511 : 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-12-06T04:00:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:56 smithi169 conmon[87179]: audit 2023-12-06T04:00:55.807944+0000 mgr.smithi017.mljnlu (mgr.14180) 512 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:00:59.062 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:00:59.063 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:00:59.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:58 smithi017 conmon[82019]: cluster 2023-12-06T04:00:57 2023-12-06T04:00:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:00:58 smithi017 conmon[82019]: .198541+0000 mgr.smithi017.mljnlu (mgr.14180) 513 : 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-12-06T04:00:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:00:58 smithi169 conmon[87179]: cluster 2023-12-06T04:00:57.198541+0000 mgr.smithi017.mljnlu (mgr.14180) 513 : 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-12-06T04:00:59.459 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:00.460 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:01.129 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:00 smithi017 conmon[82019]: audit 2023-12-06T04:00:59.057114+0000 mgr.smithi017.mljnlu (mgr.14180) 514 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:01.129 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:00 smithi017 conmon[82019]: cluster 2023-12-06T04:00:59.199221+0000 mgr.smithi017.mljnlu (mgr.14180) 515 : 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-12-06T04:01:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:00 smithi169 conmon[87179]: audit 2023-12-06T04:00:59.057114+0000 mgr.smithi017.mljnlu (mgr.14180) 514 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:00 smithi169 conmon[87179]: cluster 2023-12-06T04:00:59.199221+0000 mgr.smithi017.mljnlu (mgr.14180) 515 : 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-12-06T04:01:02.393 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:02.393 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:02.828 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:02 smithi169 conmon[87179]: cluster 2023-12-06T04:01:01.199671+0000 mgr.smithi017.mljnlu (mgr.14180) 516 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:02 smithi017 conmon[82019]: cluster 2023-12-06T04:01:01.199671+0000 mgr.smithi017.mljnlu (mgr.14180) 516 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:03.829 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:03 smithi169 conmon[87179]: audit 2023-12-06T04:01:02.387845+0000 mgr.smithi017.mljnlu (mgr.14180) 517 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:04.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:03 smithi017 conmon[82019]: audit 2023-12-06T04:01:02.387845+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:01:04.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:03 smithi017 conmon[82019]: ) 517 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:04 smithi017 conmon[82019]: cluster 2023-12-06T04:01: 2023-12-06T04:01:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:04 smithi017 conmon[82019]: 03.200333+0000 mgr.smithi017.mljnlu (mgr.14180) 518 : cluster [DBG] pgmap v369: 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-12-06T04:01:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:04 smithi169 conmon[87179]: cluster 2023-12-06T04:01:03.200333+0000 mgr.smithi017.mljnlu (mgr.14180) 518 : cluster [DBG] pgmap v369: 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-12-06T04:01:05.683 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:05.684 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:06.195 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:07.196 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:07.227 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:06 smithi017 conmon[82019]: cluster 2023-12-06T04:01:05.200877+0000 mgr.smithi017.mljnlu (mgr.14180) 519 : 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-12-06T04:01:07.227 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:06 smithi017 conmon[82019]: audit 2023-12-06T04:01:05.678930+0000 mgr.smithi017.mljnlu (mgr.14180) 520 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:06 smithi169 conmon[87179]: cluster 2023-12-06T04:01:05.200877+0000 mgr.smithi017.mljnlu (mgr.14180) 519 : 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-12-06T04:01:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:06 smithi169 conmon[87179]: audit 2023-12-06T04:01:05.678930+0000 mgr.smithi017.mljnlu (mgr.14180) 520 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:09.066 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:09.067 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:09.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:08 smithi017 conmon[82019]: cluster 2023-12-06T04:01 2023-12-06T04:01:09.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:08 smithi017 conmon[82019]: :07.201526+0000 mgr.smithi017.mljnlu (mgr.14180) 521 : 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-12-06T04:01:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:08 smithi169 conmon[87179]: cluster 2023-12-06T04:01:07.201526+0000 mgr.smithi017.mljnlu (mgr.14180) 521 : 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-12-06T04:01:09.547 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:10.548 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:11.152 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:10 smithi017 conmon[82019]: audit 2023-12-06T04:01:09.061918+0000 mgr.smithi017.mljnlu (mgr.14180) 522 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:11.152 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:10 smithi017 conmon[82019]: cluster 2023-12-06T04:01:09.202211+0000 mgr.smithi017.mljnlu (mgr.14180) 523 : 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-12-06T04:01:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:10 smithi169 conmon[87179]: audit 2023-12-06T04:01:09.061918+0000 mgr.smithi017.mljnlu (mgr.14180) 522 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:10 smithi169 conmon[87179]: cluster 2023-12-06T04:01:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:10 smithi169 conmon[87179]: 2023-12-06T04:01:09.202211+0000 mgr.smithi017.mljnlu (mgr.14180) 523 : 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-12-06T04:01:12.414 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:12.414 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:12.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:12 smithi017 conmon[82019]: cluster 2023-12-06T04:01:11.202688+0000 mgr.smithi017.mljnlu (mgr.14180) 524 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:12 smithi169 conmon[87179]: cluster 2023-12-06T04:01:11.202688+0000 mgr.smithi017.mljnlu (mgr.14180) 524 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:13.914 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:13 smithi169 conmon[87179]: audit 2023-12-06T04:01:12.409016+0000 mgr.smithi017.mljnlu (mgr.14180) 525 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:13 smithi169 conmon[87179]: 2023-12-06T04:01:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:13 smithi017 conmon[82019]: audit 2023-12-06T04:01:12.409016+0000 mgr.smithi017.mljnlu (mgr.14180) 525 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:14 smithi169 conmon[87179]: cluster 2023-12-06T04:01:13.203369+0000 mgr.smithi017.mljnlu (mgr.14180) 526 : cluster [DBG] pgmap v374: 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-12-06T04:01:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:14 smithi017 conmon[82019]: cluster 2023-12-06T04:01:13.203369 2023-12-06T04:01:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:14 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 526 : cluster [DBG] pgmap v374: 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-12-06T04:01:15.838 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:15.838 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:16.278 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:16 smithi169 conmon[87179]: cluster 2023-12-06T04:01:15.203979+0000 mgr.smithi017.mljnlu (mgr.14180) 527 : 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-12-06T04:01:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:16 smithi169 conmon[87179]: audit 2023-12-06T04:01:15.833761+0000 mgr.smithi017.mljnlu (mgr.14180) 528 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:17.280 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:17.311 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:16 smithi017 conmon[82019]: cluster 2023-12-06T04:01:15.203979+0000 mgr.smithi017.mljnlu (mgr.14180) 527 : 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-12-06T04:01:17.311 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:16 smithi017 conmon[82019]: audit 2023-12-06T04:01:15.833761+0000 mgr.smithi017.mljnlu (mgr.14180) 528 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:18 smithi017 conmon[82019]: cluster 2023-12-06T04:01:17.204680+0000 mgr.smithi017.mljnlu (mgr.14180) 529 : 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-12-06T04:01:19.149 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:19.149 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:18 smithi169 conmon[87179]: cluster 2023-12-06T04:01:17.204680+0000 mgr.smithi017.mljnlu (mgr.14180) 529 : 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-12-06T04:01:19.644 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:20.645 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:20 smithi017 conmon[82019]: audit 2023-12-06T04:01:19.144453+0000 mgr.smithi017.mljnlu (mgr.14180) 530 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:20 smithi017 conmon[82019]: cluster 2023-12-06T04:01:19.205556+0000 mgr.smithi017.mljnlu (mgr.14180) 531 : 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-12-06T04:01:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:20 smithi169 conmon[87179]: audit 2023-12-06T04 2023-12-06T04:01:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:20 smithi169 conmon[87179]: :01:19.144453+0000 mgr.smithi017.mljnlu (mgr.14180) 530 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:20 smithi169 conmon[87179]: cluster 2023-12-06T04:01:19.205556+0000 mgr.smithi017.mljnlu (mgr.14180) 531 : 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-12-06T04:01:22.501 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:22.502 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:22.999 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:22 smithi169 conmon[87179]: cluster 2023-12-06T04:01:21.206041+0000 mgr.smithi017.mljnlu (mgr.14180) 532 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:22 smithi017 conmon[82019]: cluster 2023-12-06T04:01:21.206041+0000 mgr.smithi017.mljnlu (mgr.14180) 532 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:24.000 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:23 smithi169 conmon[87179]: audit 2023-12-06T04:01:22.497081+0000 mgr.smithi017.mljnlu (mgr.14180) 533 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:24.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:23 smithi017 conmon[82019]: audit 2023-12-06T04:01:22.497081+0000 mgr.smithi017.mljnlu (mgr.14180) 533 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:24 smithi169 conmon[87179]: cluster 2023-12-06T04:01:23.206802+0000 mgr.smithi017.mljnlu (mgr.14180) 534 : cluster [DBG] pgmap v379: 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-12-06T04:01:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:24 smithi017 conmon[82019]: cluster 2023-12-06T04:01:23.206802+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:01:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:24 smithi017 conmon[82019]: mgr.14180) 534 : cluster [DBG] pgmap v379: 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-12-06T04:01:25.827 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:25.827 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:26.261 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:26 smithi169 conmon[87179]: cluster 2023-12-06T04:01:25.207446+0000 mgr.smithi017.mljnlu (mgr.14180) 535 : 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-12-06T04:01:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:26 smithi169 conmon[87179]: audit 2023-12-06T04:01:25.822438+0000 mgr.smithi017.mljnlu (mgr.14180) 536 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:27.262 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:27.294 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:26 smithi017 conmon[82019]: cluster 2023-12-06T04:01:25.207446+0000 mgr.smithi017.mljnlu (mgr.14180) 535 : 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-12-06T04:01:27.294 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:26 smithi017 conmon[82019]: audit 2023-12-06T04:01:25.822438+0000 mgr.smithi017.mljnlu (mgr.14180) 536 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:29.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:28 smithi017 conmon[82019]: cluster 2023-12-06T04:01:27.208355+0000 mgr.smithi017.mljnlu (mgr.14180) 537 : 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-12-06T04:01:29.132 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:29.133 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:28 smithi169 conmon[87179]: cluster 2023-12-06T04:01:27.208355+0000 mgr.smithi017.mljnlu (mgr.14180) 537 : 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-12-06T04:01:29.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:30.625 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:31.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:30 smithi017 conmon[82019]: audit 2023-12-06T04:01:29.128102+0000 2023-12-06T04:01:31.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:30 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 538 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:31.208 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:30 smithi017 conmon[82019]: cluster 2023-12-06T04:01:29.209118+0000 mgr.smithi017.mljnlu (mgr.14180) 539 : 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-12-06T04:01:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:30 smithi169 conmon[87179]: audit 2023-12-06T04:01:29.128102+0000 mgr.smithi017.mljnlu (mgr.14180) 538 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:30 smithi169 conmon[87179]: cluster 2023-12-06T04:01:29.209118+0000 mgr.smithi017.mljnlu (mgr.14180) 539 : 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-12-06T04:01:32.585 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:32.586 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:32.977 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:32 smithi169 conmon[87179]: cluster 2023-12-06T04:01:31.209578+0000 mgr.smithi017.mljnlu (mgr.14180) 540 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:32 smithi017 conmon[82019]: cluster 2023-12-06T04:01:31.209578+0000 mgr.smithi017.mljnlu (mgr.14180) 540 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:33.979 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:33 smithi169 conmon[87179]: audit 2023-12-06T04:01:32.581278+0000 mgr.smithi017.mljnlu (mgr.14180) 541 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:34.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:33 smithi017 conmon[82019]: audit 2023-12-06T04:01:32.581278+0000 mgr.smithi017.mljnlu (mgr.14180) 541 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:34 smithi169 conmon[87179]: cluster 2023-12-06T04:01:33.210348+0000 mgr.smithi017.mljnlu (mgr.14180) 542 : cluster [DBG] pgmap v384: 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-12-06T04:01:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:34 smithi169 conmon[87179]: 2023-12-06T04:01:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:34 smithi017 conmon[82019]: cluster 2023-12-06T04:01:33.210348+0000 mgr.smithi017.mljnlu 2023-12-06T04:01:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:34 smithi017 conmon[82019]: (mgr.14180) 542 : cluster [DBG] pgmap v384: 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-12-06T04:01:35.780 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:35.780 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:36.231 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:37.232 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:36 smithi169 conmon[87179]: cluster 2023-12-06T04:01:35.210911+0000 mgr.smithi017.mljnlu (mgr.14180) 543 : 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-12-06T04:01:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:36 smithi169 conmon[87179]: audit 2023-12-06T04:01:35.775542+0000 mgr.smithi017.mljnlu (mgr.14180) 544 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:37.263 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:36 smithi017 conmon[82019]: cluster 2023-12-06T04:01:35.210911+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:01:37.263 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:36 smithi017 conmon[82019]: ) 543 : 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-12-06T04:01:37.263 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:36 smithi017 conmon[82019]: audit 2023-12-06T04:01:35.775542+0000 mgr.smithi017.mljnlu (mgr.14180) 544 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:38 smithi017 conmon[82019]: cluster 2023-12-06T04:01:37.211711+0000 mgr.smithi017.mljnlu 2023-12-06T04:01:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:38 smithi017 conmon[82019]: (mgr.14180) 545 : 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-12-06T04:01:39.161 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:39.161 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:38 smithi169 conmon[87179]: cluster 2023-12-06T04:01:37.211711+0000 mgr.smithi017.mljnlu (mgr.14180) 545 : 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-12-06T04:01:39.594 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:40.595 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:41.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:40 smithi017 conmon[82019]: audit 2023-12-06T04:01:39 2023-12-06T04:01:41.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:40 smithi017 conmon[82019]: .156950+0000 mgr.smithi017.mljnlu (mgr.14180) 546 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:41.207 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:40 smithi017 conmon[82019]: cluster 2023-12-06T04:01:39.212424+0000 mgr.smithi017.mljnlu (mgr.14180) 547 : 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-12-06T04:01:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:40 smithi169 conmon[87179]: audit 2023-12-06T04:01:39.156950+0000 mgr.smithi017.mljnlu (mgr.14180) 546 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:40 smithi169 conmon[87179]: 2023-12-06T04:01:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:40 smithi169 conmon[87179]: cluster 2023-12-06T04:01:39.212424+0000 mgr.smithi017.mljnlu (mgr.14180) 547 : 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-12-06T04:01:42.525 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:42.525 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:43.055 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:42 smithi169 conmon[87179]: cluster 2023-12-06T04:01:41.212895+0000 mgr.smithi017.mljnlu (mgr.14180) 548 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:42 smithi017 conmon[82019]: cluster 2023-12-06T04:01:41.212895+0000 mgr.smithi017.mljnlu (mgr.14180) 548 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:44.056 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:43 smithi169 conmon[87179]: audit 2023-12-06T04:01:42.520001+0000 mgr.smithi017.mljnlu (mgr.14180) 549 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:43 smithi017 conmon[82019]: audit 2023-12-06T04:01:42.520001+0000 mgr.smithi017.mljnlu (mgr.14180) 549 : audit 2023-12-06T04:01:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:43 smithi017 conmon[82019]: [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:44 smithi169 conmon[87179]: cluster 2023-12-06T04:01:43.213564+0000 mgr.smithi017.mljnlu (mgr.14180) 550 : cluster [DBG] 2023-12-06T04:01:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:44 smithi169 conmon[87179]: pgmap v389: 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-12-06T04:01:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:44 smithi017 conmon[82019]: cluster 2023-12-06T04:01:43.213564+0000 2023-12-06T04:01:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:44 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 550 : cluster [DBG] pgmap v389: 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-12-06T04:01:46.000 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:46.000 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:46.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:46 smithi169 conmon[87179]: cluster 2023-12-06T04:01:45.214341+0000 mgr.smithi017.mljnlu (mgr.14180) 551 : 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-12-06T04:01:47.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:46 smithi169 conmon[87179]: audit 2023-12-06T04:01:45.995464+0000 mgr.smithi017.mljnlu (mgr.14180) 552 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:46 smithi017 conmon[82019]: cluster 2023-12-06T04:01:45.214341+0000 mgr.smithi017.mljnlu (mgr.14180) 551 : 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-12-06T04:01:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:46 smithi017 conmon[82019]: audit 2023-12-06T04:01:45.995464+0000 mgr.smithi017.mljnlu (mgr.14180) 552 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:47.523 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:48 smithi169 conmon[87179]: cluster 2023-12-06T04:01:47.215136+0000 mgr.smithi017.mljnlu (mgr.14180) 553 : 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-12-06T04:01:49.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:48 smithi017 conmon[82019]: cluster 2023-12-06T04:01:47.215136+0000 mgr.smithi017.mljnlu (mgr.14180) 553 : 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-12-06T04:01:49.457 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:49.458 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:49.875 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:50.877 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:50 smithi169 conmon[87179]: cluster 2023-12-06T04:01:49.215846+0000 mgr.smithi017.mljnlu (mgr.14180) 554 : 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-12-06T04:01:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:50 smithi169 conmon[87179]: audit 2023-12-06T04:01:49.451576+0000 mgr.smithi017.mljnlu (mgr.14180) 555 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:50 smithi017 conmon[82019]: cluster 2023-12-06T04:01:49.215846+0000 mgr.smithi017.mljnlu (mgr.14180) 554 2023-12-06T04:01:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:50 smithi017 conmon[82019]: : 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-12-06T04:01:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:50 smithi017 conmon[82019]: audit 2023-12-06T04:01:49.451576+0000 mgr.smithi017.mljnlu (mgr.14180) 555 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:52.766 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:52.767 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:53.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:52 smithi017 conmon[82019]: cluster 2023-12-06T04:01:51.216495+0000 mgr.smithi017.mljnlu (mgr.14180) 556 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:53.144 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:52 smithi169 conmon[87179]: cluster 2023-12-06T04:01:51.216495+0000 mgr.smithi017.mljnlu (mgr.14180) 556 : cluster 2023-12-06T04:01:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:52 smithi169 conmon[87179]: [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:01:54.145 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:53 smithi169 conmon[87179]: audit 2023-12-06T04:01:52.762356+0000 mgr.smithi017.mljnlu (mgr.14180) 557 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:53 smithi017 conmon[82019]: audit 2023-12-06T04:01:52.762356 2023-12-06T04:01:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:53 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 557 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:54 smithi017 conmon[82019]: cluster 2023-12-06 2023-12-06T04:01:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:54 smithi017 conmon[82019]: T04:01:53.217298+0000 mgr.smithi017.mljnlu (mgr.14180) 558 : cluster [DBG] pgmap v394: 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-12-06T04:01:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:54 smithi169 conmon[87179]: cluster 2023-12-06T04:01:53.217298+0000 mgr.smithi017.mljnlu (mgr.14180) 558 : cluster [DBG] pgmap v394: 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-12-06T04:01:56.087 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:56.087 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:01:56.598 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:01:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:56 smithi169 conmon[87179]: cluster 2023-12-06T04:01:55.217949+0000 mgr.smithi017.mljnlu (mgr.14180) 559 : 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-12-06T04:01:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:56 smithi017 conmon[82019]: cluster 2023-12-06T04:01:55.217949+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:01:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:56 smithi017 conmon[82019]: 559 : 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-12-06T04:01:57.599 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:01:58.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:57 smithi017 conmon[82019]: audit 2023-12-06T04:01:56.082426 2023-12-06T04:01:58.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:57 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 560 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:57 smithi169 conmon[87179]: audit 2023-12-06T04:01:56.082426+0000 mgr.smithi017.mljnlu (mgr.14180) 560 : audit 2023-12-06T04:01:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:57 smithi169 conmon[87179]: [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:01:59.164 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:58 smithi017 conmon[82019]: cluster 2023-12-06T04:01:57.218716+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:01:59.164 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:01:58 smithi017 conmon[82019]: ) 561 : 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-12-06T04:01:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:01:58 smithi169 conmon[87179]: cluster 2023-12-06T04:01:57.218716+0000 mgr.smithi017.mljnlu (mgr.14180) 561 : 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-12-06T04:01:59.549 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:01:59.549 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:00.050 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:01.052 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:00 smithi169 conmon[87179]: cluster 2023-12-06T04:01:59.219416+0000 mgr.smithi017.mljnlu (mgr.14180) 562 : 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-12-06T04:02:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:00 smithi169 conmon[87179]: audit 2023-12-06T04:01:59.544359+0000 mgr.smithi017.mljnlu (mgr.14180) 563 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:01.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:00 smithi017 conmon[82019]: cluster 2023-12-06T04:01:59.219416+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:02:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:00 smithi017 conmon[82019]: mgr.14180) 562 : 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-12-06T04:02:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:00 smithi017 conmon[82019]: audit 2023-12-06T04:01:59.544359+0000 mgr.smithi017.mljnlu (mgr.14180) 563 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:02.881 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:02.881 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:07.975907Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:03.311 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:03 smithi017 conmon[82019]: cluster 2023-12-06T04:02:01.220017+0000 mgr.smithi017.mljnlu (mgr.14180) 564 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:03.313 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:03 smithi169 conmon[87179]: cluster 2023-12-06T04:02:01.220017+0000 mgr.smithi017.mljnlu (mgr.14180) 564 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:04.314 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:04.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:04 smithi017 conmon[82019]: audit 2023-12-06T04:02:02.876287+0000 mgr.smithi017.mljnlu (mgr.14180) 565 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:04.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:04 smithi169 conmon[87179]: audit 2023-12-06T04:02:02.876287+0000 mgr.smithi017.mljnlu (mgr.14180) 565 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:05 smithi017 conmon[82019]: cluster 2023-12-06T04:02:03.220718+0000 mgr.smithi017.mljnlu (mgr.14180) 566 : cluster [DBG] pgmap v399: 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-12-06T04:02:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:05 smithi017 conmon[82019]: audit 2023-12-06T04:02:04.439395+0000 mon.smithi017 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.ezmkxm"}]: dispatch 2023-12-06T04:02:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:05 smithi169 conmon[87179]: cluster 2023-12-06T04:02:03.220718+0000 mgr.smithi017.mljnlu (mgr.14180) 566 : cluster [DBG] pgmap v399: 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-12-06T04:02:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:05 smithi169 conmon[87179]: audit 2023-12-06T04:02:04.439395+0000 mon.smithi017 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.ezmkxm"}]: dispatch 2023-12-06T04:02:06.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: cephadm 2023-12-06T04:02:04.438767+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: mgr.14180) 567 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: cephadm 2023-12-06T0 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 4:02:04.439005+0000 mgr.smithi017.mljnlu (mgr.14180) 568 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: cephadm 2023-12-06T04:02:04.440043+0000 mgr.smithi017.mljnlu (mgr.14180) 569 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.073 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:06 smithi017 conmon[82019]: cephadm 2023-12-06T04:02:04.441481+0000 mgr.smithi017.mljnlu (mgr.14180) 570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.adisun on smithi017 2023-12-06T04:02:06.156 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:06.156 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: cephadm 2023-12-06T04:02:04.438767+0000 mgr.smithi017.mljnlu (mgr.14180) 567 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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-12-06T04:02:06.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: .io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: cephadm 2023-12-06T04:02:04.439005+0000 mgr.smithi017.mljnlu (mgr.14180) 568 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: cephadm 2023-12-06T04:02:04.440043+0000 mgr.smithi017.mljnlu (mgr.14180) 569 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.ezmkxm ... 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:12Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:00:49Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:01:26Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:02:06.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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-12-06T04:02:06.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:02:06.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:06 smithi169 conmon[87179]: cephadm 2023-12-06T04:02:04.441481+0000 mgr.smithi017.mljnlu (mgr.14180) 570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.adisun on smithi017 2023-12-06T04:02:06.669 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:07 smithi017 conmon[82019]: cluster 2023-12-06T04:02:05.221369+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:07 smithi017 conmon[82019]: (mgr.14180) 571 : 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-12-06T04:02:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:07 smithi169 conmon[87179]: cluster 2023-12-06T04:02:05.221369+0000 mgr.smithi017.mljnlu (mgr.14180) 571 : 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-12-06T04:02:07.670 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:08.289 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:08 smithi017 conmon[82019]: audit 2023-12-06T04:02:06.151892+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:02:08.289 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:08 smithi017 conmon[82019]: mgr.14180) 572 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:08.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:08 smithi169 conmon[87179]: audit 2023-12-06T04:02:06.151892+0000 mgr.smithi017.mljnlu (mgr.14180) 572 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:09 smithi017 conmon[82019]: cluster 2023-12-06T04:02:07.222100+0000 2023-12-06T04:02:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:09 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 573 : 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-12-06T04:02:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:09 smithi169 conmon[87179]: cluster 2023-12-06T04:02:07.222100+0000 mgr.smithi017.mljnlu (mgr.14180) 573 : 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-12-06T04:02:09.520 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:09.520 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:10.022 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:11.022 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:11 smithi017 conmon[82019]: cluster 2023-12-06T04:02:09.222964+0000 mgr.smithi017.mljnlu (mgr.14180) 574 : 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-12-06T04:02:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:11 smithi017 conmon[82019]: audit 2023-12-06T04:02:09.515463+0000 mgr.smithi017.mljnlu (mgr.14180) 575 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:11 smithi169 conmon[87179]: cluster 2023-12-06T04:02:09.222964+0000 mgr.smithi017.mljnlu (mgr.14180) 574 : 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-12-06T04:02:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:11 smithi169 conmon[87179]: audit 2023-12-06T04:02:09.515463+0000 mgr.smithi017.mljnlu (mgr.14180) 575 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:12.989 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:12.990 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:13 smithi017 conmon[82019]: cluster 2023-12-06T04:02:11.223433+0000 mgr.smithi017.mljnlu (mgr.14180) 576 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:13.385 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:13 smithi169 conmon[87179]: cluster 2023-12-06T04:02:11.223433+0000 mgr.smithi017.mljnlu (mgr.14180) 576 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:14.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:14 smithi017 conmon[82019]: audit 2023-12-06T04:02:12.984806+0000 mgr.smithi017.mljnlu (mgr.14180) 577 : audit 2023-12-06T04:02:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:14 smithi017 conmon[82019]: [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:14.386 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:14.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:14 smithi169 conmon[87179]: audit 2023-12-06T04:02:12.984806+0000 mgr.smithi017.mljnlu (mgr.14180) 577 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:15 smithi017 conmon[82019]: cluster 2023-12-06T04:02:13.224237+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:15 smithi017 conmon[82019]: (mgr.14180) 578 : cluster [DBG] pgmap v404: 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-12-06T04:02:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:15 smithi169 conmon[87179]: cluster 2023-12-06T04:02:13.224237+0000 mgr.smithi017.mljnlu (mgr.14180) 578 : cluster [DBG] pgmap v404: 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-12-06T04:02:16.297 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:16.297 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:16.751 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:17 smithi017 conmon[82019]: cluster 2023-12-06T04:02:15.224766+0000 mgr.smithi017.mljnlu (mgr.14180) 579 : 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-12-06T04:02:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:17 smithi169 conmon[87179]: cluster 2023-12-06T04:02:15.224766+0000 mgr.smithi017.mljnlu (mgr.14180) 579 : 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-12-06T04:02:17.752 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:18 smithi017 conmon[82019]: audit 2023-12-06T04:02:16.292603+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:18 smithi017 conmon[82019]: (mgr.14180) 580 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:18 smithi169 conmon[87179]: audit 2023-12-06T04:02:16.292603+0000 mgr.smithi017.mljnlu (mgr.14180) 580 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:18 smithi169 conmon[87179]: 2023-12-06T04:02:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:19 smithi017 conmon[82019]: cluster 2023-12-06T04:02:17.225681 2023-12-06T04:02:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:19 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 581 : 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-12-06T04:02:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:19 smithi169 conmon[87179]: cluster 2023-12-06T04:02:17.225681+0000 mgr.smithi017.mljnlu (mgr.14180) 581 : 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-12-06T04:02:19.584 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:19.584 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:20.104 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:21.105 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:21 smithi017 conmon[82019]: cluster 2023-12-06T04:02:19.226417+0000 mgr.smithi017.mljnlu (mgr.14180) 582 : 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-12-06T04:02:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:21 smithi017 conmon[82019]: audit 2023-12-06T04:02:19.579488+0000 mgr.smithi017.mljnlu (mgr.14180) 583 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:21 smithi169 conmon[87179]: cluster 2023-12-06T04:02:19.226417+0000 mgr.smithi017.mljnlu (mgr.14180) 582 2023-12-06T04:02:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:21 smithi169 conmon[87179]: : 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-12-06T04:02:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:21 smithi169 conmon[87179]: audit 2023-12-06T04:02:19.579488+0000 mgr.smithi017.mljnlu (mgr.14180) 583 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:23.079 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:23.080 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:23.312 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:23 smithi017 conmon[82019]: cluster 2023-12-06T04:02:21.227150+0000 mgr.smithi017.mljnlu (mgr.14180) 584 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:23 smithi169 conmon[87179]: cluster 2023-12-06T04:02:21.227150+0000 mgr.smithi017.mljnlu (mgr.14180) 584 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:23.566 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:24.567 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:25 smithi017 conmon[82019]: audit 2023-12-06T04:02:23.075275+0000 2023-12-06T04:02:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:25 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 585 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:25 smithi017 conmon[82019]: cluster 2023-12-06T04:02:23.227834+0000 mgr.smithi017.mljnlu (mgr.14180) 586 : cluster [DBG] pgmap v409: 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-12-06T04:02:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:25 smithi169 conmon[87179]: audit 2023-12-06T04:02:23.075275+0000 mgr.smithi017.mljnlu (mgr.14180) 585 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:25 smithi169 conmon[87179]: cluster 2023-12-06T04:02:23.227834+0000 mgr.smithi017.mljnlu (mgr.14180) 586 : cluster [DBG] pgmap v409: 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-12-06T04:02:26.396 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:26.396 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:26.830 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:27.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:27 smithi017 conmon[82019]: cluster 2023-12-06T04:02:25.228534+0000 mgr.smithi017.mljnlu (mgr.14180) 587 : 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-12-06T04:02:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:27 smithi169 conmon[87179]: cluster 2023-12-06T04:02:25.228534+0000 mgr.smithi017.mljnlu (mgr.14180) 587 : 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-12-06T04:02:27.831 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:28.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:28 smithi017 conmon[82019]: audit 2023-12-06T04:02:26.390468 2023-12-06T04:02:28.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:28 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 588 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:28 smithi169 conmon[87179]: audit 2023-12-06T04:02:26.390468+0000 mgr.smithi017.mljnlu (mgr.14180) 588 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:29 smithi017 conmon[82019]: cluster 2023-12-06T04:02:27.229150+0000 2023-12-06T04:02:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:29 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 589 : 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-12-06T04:02:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:29 smithi169 conmon[87179]: cluster 2023-12-06T04:02:27.229150+0000 mgr.smithi017.mljnlu (mgr.14180) 589 : 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-12-06T04:02:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:29 smithi169 conmon[87179]: 2023-12-06T04:02:29.745 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:29.745 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:30.181 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:31.183 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:31 smithi017 conmon[82019]: cluster 2023-12-06T04:02:29.229875+0000 mgr.smithi017.mljnlu (mgr.14180) 590 : cluster 2023-12-06T04:02:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:31 smithi017 conmon[82019]: [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-12-06T04:02:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:31 smithi017 conmon[82019]: audit 2023-12-06T04:02:29.740240+0000 mgr.smithi017.mljnlu (mgr.14180) 591 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:31 smithi169 conmon[87179]: cluster 2023-12-06T04:02:29.229875+0000 mgr.smithi017.mljnlu (mgr.14180) 590 : 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-12-06T04:02:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:31 smithi169 conmon[87179]: audit 2023-12-06T04:02:29.740240+0000 mgr.smithi017.mljnlu (mgr.14180) 591 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:33.023 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:33.023 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:33 smithi017 conmon[82019]: cluster 2023-12-06T04:02:31. 2023-12-06T04:02:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:33 smithi017 conmon[82019]: 230553+0000 mgr.smithi017.mljnlu (mgr.14180) 592 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:33 smithi169 conmon[87179]: cluster 2023-12-06T04:02:31.230553+0000 mgr.smithi017.mljnlu (mgr.14180) 592 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:33 smithi169 conmon[87179]: 2023-12-06T04:02:33.648 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:34.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:34 smithi169 conmon[87179]: audit 2023-12-06T04:02:33.018601+0000 mgr.smithi017.mljnlu (mgr.14180) 593 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:34.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:34 smithi169 conmon[87179]: cluster 2023-12-06T04:02:33.231435+0000 mgr.smithi017.mljnlu (mgr.14180) 594 : cluster [DBG] pgmap v414: 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-12-06T04:02:34.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:34 smithi017 conmon[82019]: audit 2023-12-06T04:02:33. 2023-12-06T04:02:34.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:34 smithi017 conmon[82019]: 018601+0000 mgr.smithi017.mljnlu (mgr.14180) 593 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:34.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:34 smithi017 conmon[82019]: cluster 2023-12-06T 2023-12-06T04:02:34.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:34 smithi017 conmon[82019]: 04:02:33.231435+0000 mgr.smithi017.mljnlu (mgr.14180) 594 : cluster 2023-12-06T04:02:34.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:34 smithi017 conmon[82019]: [DBG] pgmap v414: 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-12-06T04:02:34.649 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:36 smithi017 conmon[82019]: cluster 2023-12-06T04:02:35.231927+0000 mgr.smithi017.mljnlu (mgr.14180) 595 : 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-12-06T04:02:36.661 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:36.661 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:36.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:36 smithi169 conmon[87179]: cluster 2023-12-06T04:02:35.231927+0000 mgr.smithi017.mljnlu (mgr.14180) 595 : 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-12-06T04:02:37.214 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:37.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:37 smithi017 conmon[82019]: audit 2023-12-06T04:02:36.654510 2023-12-06T04:02:37.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:37 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 596 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:37.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:37 smithi169 conmon[87179]: audit 2023-12-06T04:02:36.654510+0000 mgr.smithi017.mljnlu (mgr.14180) 596 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:38.215 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:38.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:38 smithi017 conmon[82019]: cluster 2023-12-06T04:02:37.232605+0000 mgr.smithi017.mljnlu (mgr.14180) 597 2023-12-06T04:02:38.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:38 smithi017 conmon[82019]: : 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-12-06T04:02:38.750 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:38 smithi169 conmon[87179]: cluster 2023-12-06T04:02:37.232605+0000 mgr.smithi017.mljnlu (mgr.14180) 597 : 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-12-06T04:02:40.042 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:40.042 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:40.466 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:40 smithi169 conmon[87179]: cluster 2023-12-06T04:02:39.233415+0000 mgr.smithi017.mljnlu (mgr.14180) 598 : 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-12-06T04:02:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:40 smithi169 conmon[87179]: audit 2023-12-06T04:02 2023-12-06T04:02:41.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:40 smithi169 conmon[87179]: :40.037683+0000 mgr.smithi017.mljnlu (mgr.14180) 599 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:40 smithi017 conmon[82019]: cluster 2023-12-06T04:02:39.233415+0000 mgr.smithi017.mljnlu (mgr.14180) 598 : 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-12-06T04:02:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:40 smithi017 conmon[82019]: audit 2023-12-06T04:02:40.037683+0000 mgr.smithi017.mljnlu (mgr.14180) 599 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:41.467 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:42.818 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:42 smithi017 conmon[82019]: cluster 2023-12-06T04:02:41.234043 2023-12-06T04:02:42.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:42 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 600 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:43.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:42 smithi169 conmon[87179]: cluster 2023-12-06T04:02:41.234043+0000 mgr.smithi017.mljnlu (mgr.14180) 600 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:43.437 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:43.438 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:43.831 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:44.832 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:44 smithi169 conmon[87179]: cluster 2023-12-06T04:02:43.234701+0000 mgr.smithi017.mljnlu (mgr.14180) 601 : cluster [DBG] pgmap v419: 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-12-06T04:02:45.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:44 smithi169 conmon[87179]: audit 2023-12-06T04:02:43.433249+0000 mgr.smithi017.mljnlu (mgr.14180) 602 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:44 smithi017 conmon[82019]: cluster 2023-12-06T04:02:43.234701+0000 mgr.smithi017.mljnlu (mgr.14180) 601 : cluster [DBG] pgmap v419: 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-12-06T04:02:45.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:44 smithi017 conmon[82019]: audit 2023-12-06T04:02:43.433249+0000 mgr.smithi017.mljnlu (mgr.14180) 602 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:46.692 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:46.692 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:47.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:46 smithi169 conmon[87179]: cluster 2023-12-06T04:02:45.235395+0000 mgr.smithi017.mljnlu (mgr.14180) 603 : 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-12-06T04:02:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:46 smithi017 conmon[82019]: cluster 2023-12-06T04:02:45.235395+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:46 smithi017 conmon[82019]: (mgr.14180) 603 : 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-12-06T04:02:47.182 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:48.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:47 smithi169 conmon[87179]: audit 2023-12-06T04:02:46.686895+0000 mgr.smithi017.mljnlu (mgr.14180) 604 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:48.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:47 smithi017 conmon[82019]: audit 2023-12-06T04:02:46.686895+0000 mgr.smithi017.mljnlu (mgr.14180) 604 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:48.183 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:49.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:48 smithi169 conmon[87179]: cluster 2023-12-06T04:02:47.236140+0000 mgr.smithi017.mljnlu (mgr.14180) 605 : 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-12-06T04:02:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:48 smithi017 conmon[82019]: cluster 2023-12-06T04:02:47.236140+0000 2023-12-06T04:02:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:48 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 605 : 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-12-06T04:02:50.002 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:50.002 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:50.532 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:50.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:50 smithi017 conmon[82019]: cluster 2023-12-06T04:02:49.237151+0000 mgr.smithi017.mljnlu (mgr.14180) 606 : 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-12-06T04:02:50.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:50 smithi017 conmon[82019]: audit 2023-12-06T04:02:49.997604+0000 mgr.smithi017.mljnlu (mgr.14180) 607 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:50 smithi169 conmon[87179]: cluster 2023-12-06T04:02:49.237151+0000 mgr.smithi017.mljnlu (mgr.14180) 606 : 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-12-06T04:02:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:50 smithi169 conmon[87179]: audit 2023-12-06T04:02:49.997604+0000 mgr.smithi017.mljnlu (mgr.14180) 607 : audit 2023-12-06T04:02:51.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:50 smithi169 conmon[87179]: [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:51.534 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:52 smithi169 conmon[87179]: cluster 2023-12-06T04:02:51.237765+0000 mgr.smithi017.mljnlu (mgr.14180) 608 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:52 smithi017 conmon[82019]: cluster 2023-12-06T04:02:51.237765+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:52 smithi017 conmon[82019]: (mgr.14180) 608 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:02:53.520 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:53.520 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:53.901 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:54.902 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:54 smithi169 conmon[87179]: cluster 2023-12-06T04:02:53.238458+0000 mgr.smithi017.mljnlu (mgr.14180) 609 : cluster [DBG] pgmap v424: 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-12-06T04:02:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:54 smithi169 conmon[87179]: audit 2023-12-06T04:02:53.515567+0000 mgr.smithi017.mljnlu (mgr.14180) 610 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:54 smithi017 conmon[82019]: cluster 2023-12-06T04:02:53.238458+0000 mgr.smithi017.mljnlu (mgr.14180) 609 2023-12-06T04:02:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:54 smithi017 conmon[82019]: : cluster [DBG] pgmap v424: 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-12-06T04:02:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:54 smithi017 conmon[82019]: audit 2023-12-06T04:02:53.515567+0000 mgr.smithi017.mljnlu (mgr.14180) 610 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:56.752 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:56.752 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:02:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:56 smithi169 conmon[87179]: cluster 2023-12-06T04:02:55.239168+0000 mgr.smithi017.mljnlu (mgr.14180) 611 : cluster [DBG] 2023-12-06T04:02:57.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:56 smithi169 conmon[87179]: 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-12-06T04:02:57.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:56 smithi017 conmon[82019]: cluster 2023-12-06T04:02:55.239168+0000 mgr.smithi017.mljnlu (mgr.14180) 611 : 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-12-06T04:02:57.160 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:02:58.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:57 smithi017 conmon[82019]: audit 2023-12-06T04:02:56.746907+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:02:58.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:57 smithi017 conmon[82019]: 14180) 612 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:58.161 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:02:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:57 smithi169 conmon[87179]: audit 2023-12-06T04:02:56.746907+0000 mgr.smithi017.mljnlu (mgr.14180) 612 : audit 2023-12-06T04:02:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:57 smithi169 conmon[87179]: [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:02:59.012 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:58 smithi017 conmon[82019]: cluster 2023-12-06T04:02:57.239800+0000 mgr.smithi017.mljnlu 2023-12-06T04:02:59.012 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:02:58 smithi017 conmon[82019]: (mgr.14180) 613 : 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-12-06T04:02:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:58 smithi169 conmon[87179]: cluster 2023-12-06T04:02:57.239800+0000 mgr.smithi017.mljnlu (mgr.14180) 613 : cluster [DBG] 2023-12-06T04:02:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:02:58 smithi169 conmon[87179]: 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-12-06T04:02:59.907 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:02:59.908 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:00.412 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:00 smithi169 conmon[87179]: cluster 2023-12-06T04:02:59.240468+0000 mgr.smithi017.mljnlu (mgr.14180) 614 : 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-12-06T04:03:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:00 smithi169 conmon[87179]: audit 2023-12-06T04:02:59.902891+0000 mgr.smithi017.mljnlu (mgr.14180) 615 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:00 smithi017 conmon[82019]: cluster 2023-12-06T04:02:59.240468+0000 mgr.smithi017.mljnlu (mgr.14180) 614 : 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-12-06T04:03:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:00 smithi017 conmon[82019]: audit 2023-12-06T04:02:59.902891+0000 mgr.smithi017.mljnlu (mgr.14180) 615 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:01.412 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:02 smithi017 conmon[82019]: cluster 2023-12-06T04:03:01.241057+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:03:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:02 smithi017 conmon[82019]: 14180) 616 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:02 smithi169 conmon[87179]: cluster 2023-12-06T04:03:01.241057+0000 mgr.smithi017.mljnlu (mgr.14180) 616 : 2023-12-06T04:03:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:02 smithi169 conmon[87179]: cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:03.260 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:03.260 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:03.676 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:04.677 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:04 smithi017 conmon[82019]: cluster 2023-12-06T04:03:03.241698+0000 mgr.smithi017.mljnlu (mgr.14180) 617 : cluster [DBG] pgmap v429: 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-12-06T04:03:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:04 smithi017 conmon[82019]: audit 2023-12-06T04:03:03.255771+0000 mgr.smithi017.mljnlu (mgr.14180) 618 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:04 smithi169 conmon[87179]: cluster 2023-12-06T04:03:03.241698+0000 mgr.smithi017.mljnlu (mgr.14180) 617 : cluster 2023-12-06T04:03:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:04 smithi169 conmon[87179]: [DBG] pgmap v429: 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-12-06T04:03:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:04 smithi169 conmon[87179]: audit 2023-12-06T04:03:03.255771+0000 mgr.smithi017.mljnlu (mgr.14180) 618 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:06.526 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:06.526 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:06.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:06 smithi017 conmon[82019]: cluster 2023-12-06T04:03:05.242355+0000 mgr.smithi017.mljnlu (mgr.14180) 619 : 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-12-06T04:03:07.043 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:06 smithi169 conmon[87179]: cluster 2023-12-06T04:03:05.242355+0000 mgr.smithi017.mljnlu (mgr.14180) 619 : cluster 2023-12-06T04:03:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:06 smithi169 conmon[87179]: [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-12-06T04:03:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:07 smithi017 conmon[82019]: audit 2023-12-06T04:03:06.521265+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:03:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:07 smithi017 conmon[82019]: ) 620 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:08.097 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:07 smithi169 conmon[87179]: audit 2023-12-06T04:03:06.521265+0000 mgr.smithi017.mljnlu (mgr.14180) 620 : 2023-12-06T04:03:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:07 smithi169 conmon[87179]: audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:09.044 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:08 smithi017 conmon[82019]: cluster 2023-12-06T04:03:07.242893+0000 mgr.smithi017.mljnlu (mgr.14180) 621 : 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-12-06T04:03:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:08 smithi169 conmon[87179]: cluster 2023-12-06T04:03:07.242893+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:03:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:08 smithi169 conmon[87179]: ) 621 : 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-12-06T04:03:09.948 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:09.948 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:10.348 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:10 smithi017 conmon[82019]: cluster 2023-12-06T04:03:09.243637+0000 mgr.smithi017.mljnlu (mgr.14180) 622 : 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-12-06T04:03:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:10 smithi017 conmon[82019]: audit 2023-12-06T04:03:09.943018+0000 mgr.smithi017.mljnlu (mgr.14180) 623 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:10 smithi169 conmon[87179]: cluster 2023-12-06T04:03:09.243637+0000 mgr.smithi017.mljnlu (mgr.14180) 622 : cluster 2023-12-06T04:03:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:10 smithi169 conmon[87179]: [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-12-06T04:03:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:10 smithi169 conmon[87179]: audit 2023-12-06T04:03:09.943018+0000 mgr.smithi017.mljnlu (mgr.14180) 623 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:11.349 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:12 smithi017 conmon[82019]: cluster 2023-12-06T04:03:11.244274+0000 mgr.smithi017.mljnlu 2023-12-06T04:03:13.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:12 smithi017 conmon[82019]: (mgr.14180) 624 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:12 smithi169 conmon[87179]: cluster 2023-12-06T04:03:11.244274+0000 mgr.smithi017.mljnlu (mgr.14180) 624 : 2023-12-06T04:03:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:12 smithi169 conmon[87179]: cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:13.431 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:13.431 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:13.815 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:14.815 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:15.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:14 smithi017 conmon[82019]: cluster 2023-12-06T04:03:13.244890+0000 mgr.smithi017.mljnlu (mgr.14180) 625 : cluster 2023-12-06T04:03:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:14 smithi017 conmon[82019]: [DBG] pgmap v434: 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-12-06T04:03:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:14 smithi017 conmon[82019]: audit 2023-12-06T04:03:13.426240+0000 mgr.smithi017.mljnlu (mgr.14180) 626 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:14 smithi169 conmon[87179]: cluster 2023-12-06T04:03:13.244890+0000 mgr.smithi017.mljnlu (mgr.14180) 625 : cluster 2023-12-06T04:03:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:14 smithi169 conmon[87179]: [DBG] pgmap v434: 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-12-06T04:03:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:14 smithi169 conmon[87179]: audit 2023-12-06T04:03:13.426240+0000 mgr.smithi017.mljnlu (mgr.14180) 626 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:16.687 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:16.687 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:16 smithi017 conmon[82019]: cluster 2023-12-06T04:03:15.245403+0000 mgr.smithi017.mljnlu (mgr.14180) 627 : 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-12-06T04:03:17.178 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:16 smithi169 conmon[87179]: cluster 2023-12-06T04:03:15.245403+0000 mgr.smithi017.mljnlu (mgr.14180) 627 : 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-12-06T04:03:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:17 smithi017 conmon[82019]: audit 2023-12-06T04:03:16.682204+0000 mgr.smithi017.mljnlu (mgr.14180) 628 : audit [DBG] 2023-12-06T04:03:18.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:17 smithi017 conmon[82019]: from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:18.179 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:17 smithi169 conmon[87179]: audit 2023-12-06T04:03:16.682204+0000 mgr.smithi017.mljnlu (mgr.14180) 628 : 2023-12-06T04:03:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:17 smithi169 conmon[87179]: audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:18 smithi017 conmon[82019]: cluster 2023-12-06T04:03:17.246028+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:03:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:18 smithi017 conmon[82019]: .14180) 629 : 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-12-06T04:03:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:18 smithi169 conmon[87179]: cluster 2023-12-06T04:03:17.246028+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:03:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:18 smithi169 conmon[87179]: 629 : 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-12-06T04:03:19.983 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:19.983 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:20.528 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:20 smithi017 conmon[82019]: cluster 2023-12-06T04:03:19.246798+0000 mgr.smithi017.mljnlu (mgr.14180) 630 : 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-12-06T04:03:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:20 smithi017 conmon[82019]: audit 2023-12-06T04:03:19.977589+0000 mgr.smithi017.mljnlu (mgr.14180) 631 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:20 smithi169 conmon[87179]: cluster 2023-12-06T04:03:19.246798+0000 mgr.smithi017.mljnlu (mgr.14180) 630 : cluster 2023-12-06T04:03:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:20 smithi169 conmon[87179]: [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-12-06T04:03:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:20 smithi169 conmon[87179]: audit 2023-12-06T04:03:19.977589+0000 mgr.smithi017.mljnlu (mgr.14180) 631 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:21.529 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:22 smithi017 conmon[82019]: cluster 2023-12-06T04:03:21.247609+0000 mgr.smithi017.mljnlu (mgr.14180) 632 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:22 smithi169 conmon[87179]: cluster 2023-12-06T04:03:21.247609+0000 mgr.smithi017.mljnlu (mgr.14180) 632 2023-12-06T04:03:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:22 smithi169 conmon[87179]: : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:23.386 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:23.386 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:23.894 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:24.895 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:24 smithi017 conmon[82019]: cluster 2023-12-06T04:03:23.248270+0000 mgr.smithi017.mljnlu (mgr.14180) 633 : cluster 2023-12-06T04:03:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:24 smithi017 conmon[82019]: [DBG] pgmap v439: 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-12-06T04:03:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:24 smithi017 conmon[82019]: audit 2023-12-06T04:03:23.381775+0000 mgr.smithi017.mljnlu (mgr.14180) 634 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:24 smithi169 conmon[87179]: cluster 2023-12-06T04:03:23.248270+0000 mgr.smithi017.mljnlu (mgr.14180) 633 : cluster [DBG] pgmap v439: 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-12-06T04:03:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:24 smithi169 conmon[87179]: audit 2023-12-06T04:03:23.381775+0000 mgr.smithi017.mljnlu (mgr.14180) 634 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:26.815 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:26.816 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:27.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:26 smithi017 conmon[82019]: cluster 2023-12-06T04:03:25.248785+0000 mgr.smithi017.mljnlu (mgr.14180) 635 : 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-12-06T04:03:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:26 smithi169 conmon[87179]: cluster 2023-12-06T04:03:25.248785+0000 mgr.smithi017.mljnlu (mgr.14180) 635 : 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-12-06T04:03:27.261 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:27 smithi017 conmon[82019]: audit 2023-12-06T04:03:26.811159+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:03:28.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:27 smithi017 conmon[82019]: .14180) 636 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:27 smithi169 conmon[87179]: audit 2023-12-06T04:03:26.811159+0000 mgr.smithi017.mljnlu (mgr.14180) 636 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:28.262 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:28 smithi017 conmon[82019]: cluster 2023-12-06T04:03:27.249409+0000 mgr.smithi017.mljnlu (mgr.14180) 637 : 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-12-06T04:03:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:28 smithi169 conmon[87179]: cluster 2023-12-06T04:03:27.249409+0000 mgr.smithi017.mljnlu (mgr.14180) 637 : 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-12-06T04:03:29.965 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:29.965 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:30.414 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:30 smithi017 conmon[82019]: cluster 2023-12-06T04:03:29.250052+0000 mgr.smithi017.mljnlu (mgr.14180) 638 : 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-12-06T04:03:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:30 smithi017 conmon[82019]: audit 2023-12-06T04:03:29.959736+0000 mgr.smithi017.mljnlu (mgr.14180) 639 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:30 smithi169 conmon[87179]: cluster 2023-12-06T04:03:29.250052+0000 mgr.smithi017.mljnlu (mgr.14180) 638 : 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-12-06T04:03:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:30 smithi169 conmon[87179]: audit 2023-12-06T04:03:29.959736+0000 mgr.smithi017.mljnlu (mgr.14180) 639 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:31.416 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:32 smithi169 conmon[87179]: cluster 2023-12-06T04:03:31.250751+0000 mgr.smithi017.mljnlu (mgr.14180) 640 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:33.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:32 smithi017 conmon[82019]: cluster 2023-12-06T04:03:31.250751+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:03:33.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:32 smithi017 conmon[82019]: mgr.14180) 640 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:33.363 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:33.363 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:33.778 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:34.780 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:34 smithi017 conmon[82019]: cluster 2023-12-06T04:03:33.251435+0000 mgr.smithi017.mljnlu (mgr.14180) 641 : cluster [DBG] pgmap v444: 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-12-06T04:03:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:34 smithi017 conmon[82019]: audit 2023-12-06T04:03:33.358434+0000 mgr.smithi017.mljnlu (mgr.14180) 642 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:34 smithi169 conmon[87179]: cluster 2023-12-06T04:03:33.251435+0000 mgr.smithi017.mljnlu (mgr.14180) 641 : cluster [DBG] pgmap v444: 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-12-06T04:03:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:34 smithi169 conmon[87179]: audit 2023-12-06T04:03:33.358434+0000 mgr.smithi017.mljnlu (mgr.14180) 642 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:36.638 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:36.638 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:36 smithi017 conmon[82019]: cluster 2023-12-06T04:03:35.252204+0000 mgr.smithi017.mljnlu (mgr.14180) 643 : 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-12-06T04:03:37.132 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:36 smithi169 conmon[87179]: cluster 2023-12-06T04:03:35.252204+0000 mgr.smithi017.mljnlu (mgr.14180) 643 : 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-12-06T04:03:38.133 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:38.165 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:37 smithi017 conmon[82019]: audit 2023-12-06T04:03:36.631769+0000 mgr.smithi017.mljnlu (mgr.14180) 644 : 2023-12-06T04:03:38.165 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:37 smithi017 conmon[82019]: audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:37 smithi169 conmon[87179]: audit 2023-12-06T04:03:36.631769+0000 mgr.smithi017.mljnlu (mgr.14180) 644 : audit 2023-12-06T04:03:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:37 smithi169 conmon[87179]: [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:38 smithi017 conmon[82019]: cluster 2023-12-06T04:03:37.253007+0000 mgr.smithi017.mljnlu (mgr.14180) 645 : 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-12-06T04:03:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:38 smithi169 conmon[87179]: cluster 2023-12-06T04:03:37.253007+0000 mgr.smithi017.mljnlu (mgr.14180) 645 : 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-12-06T04:03:40.112 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:40.112 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:40.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:40 smithi169 conmon[87179]: cluster 2023-12-06T04:03:39.253709+0000 mgr.smithi017.mljnlu (mgr.14180) 646 : 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-12-06T04:03:41.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:40 smithi017 conmon[82019]: cluster 2023-12-06T04:03:39.253709+0000 2023-12-06T04:03:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:40 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 646 : 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-12-06T04:03:41.585 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:42.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:41 smithi017 conmon[82019]: audit 2023-12-06T04:03:40.107537+0000 2023-12-06T04:03:42.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:41 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 647 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:41 smithi169 conmon[87179]: audit 2023-12-06T04:03:40.107537+0000 mgr.smithi017.mljnlu (mgr.14180) 647 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:43.117 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:42 smithi017 conmon[82019]: cluster 2023-12-06T04:03:41.254488+0000 mgr.smithi017.mljnlu (mgr.14180) 648 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:42 smithi169 conmon[87179]: cluster 2023-12-06T04:03:41.254488+0000 mgr.smithi017.mljnlu (mgr.14180) 648 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:43.459 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:43.459 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:43.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:44.948 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:44 smithi169 conmon[87179]: cluster 2023-12-06T04:03:43.255188+0000 mgr.smithi017.mljnlu (mgr.14180) 649 : cluster [DBG] pgmap v449: 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-12-06T04:03:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:44 smithi169 conmon[87179]: audit 2023-12-06T04:03:43.453875+0000 mgr.smithi017.mljnlu (mgr.14180) 650 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:45.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:44 smithi017 conmon[82019]: cluster 2023-12-06T04:03:43.255188+0000 mgr.smithi017.mljnlu (mgr.14180) 649 : cluster [DBG] pgmap v449: 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-12-06T04:03:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:44 smithi017 conmon[82019]: audit 2023-12-06T04:03:43.453875+0000 mgr.smithi017.mljnlu (mgr.14180) 650 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:46.790 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:46.790 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:46 smithi017 conmon[82019]: cluster 2023-12-06T04:03:45.255727+0000 mgr.smithi017.mljnlu (mgr.14180) 651 : 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-12-06T04:03:47.212 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:46 smithi169 conmon[87179]: cluster 2023-12-06T04:03:45.255727+0000 mgr.smithi017.mljnlu (mgr.14180) 651 : 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-12-06T04:03:48.213 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:48.244 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:47 smithi017 conmon[82019]: audit 2023-12-06T04:03:46.785358+0000 mgr.smithi017.mljnlu (mgr.14180) 652 : 2023-12-06T04:03:48.244 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:47 smithi017 conmon[82019]: audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:48.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:47 smithi169 conmon[87179]: audit 2023-12-06T04:03:46.785358+0000 mgr.smithi017.mljnlu (mgr.14180) 652 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:48 smithi017 conmon[82019]: cluster 2023-12-06T04:03:47.256386+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:03:49.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:48 smithi017 conmon[82019]: .14180) 653 : 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-12-06T04:03:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:48 smithi169 conmon[87179]: cluster 2023-12-06T04:03:47.256386+0000 mgr.smithi017.mljnlu (mgr.14180) 653 : 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-12-06T04:03:50.153 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:50.154 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:50.562 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:50 smithi169 conmon[87179]: cluster 2023-12-06T04:03:49.257062+0000 mgr.smithi017.mljnlu (mgr.14180) 654 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:50 smithi017 conmon[82019]: cluster 2023-12-06T04:03:49.257062+0000 mgr.smithi017.mljnlu (mgr.14180) 654 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:51.563 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:52.139 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:51 smithi017 conmon[82019]: audit 2023-12-06T04:03:50.148979+0000 mgr.smithi017.mljnlu (mgr.14180) 655 2023-12-06T04:03:52.139 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:51 smithi017 conmon[82019]: : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:52.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:51 smithi169 conmon[87179]: audit 2023-12-06T04:03:50.148979+0000 mgr.smithi017.mljnlu (mgr.14180) 655 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:53.141 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:52 smithi017 conmon[82019]: cluster 2023-12-06T04:03:51 2023-12-06T04:03:53.141 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:52 smithi017 conmon[82019]: .257738+0000 mgr.smithi017.mljnlu (mgr.14180) 656 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:52 smithi169 conmon[87179]: cluster 2023-12-06T04:03:51.257738+0000 mgr.smithi017.mljnlu (mgr.14180) 656 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:53.532 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:53.533 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:54.027 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:55.029 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:54 smithi169 conmon[87179]: cluster 2023-12-06T04:03:53.258448+0000 mgr.smithi017.mljnlu (mgr.14180) 657 : cluster [DBG] pgmap v454: 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-12-06T04:03:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:54 smithi169 conmon[87179]: audit 2023-12-06T04:03:53.528239+0000 mgr.smithi017.mljnlu (mgr.14180) 658 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:55.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:54 smithi017 conmon[82019]: cluster 2023-12-06T04:03:53.258448+0000 mgr.smithi017.mljnlu (mgr.14180) 657 : cluster [DBG] pgmap v454: 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-12-06T04:03:55.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:54 smithi017 conmon[82019]: audit 2023-12-06T04:03:53.528239+0000 mgr.smithi017.mljnlu (mgr.14180) 658 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:56.859 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:03:56.859 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:03:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:56 smithi169 conmon[87179]: cluster 2023-12-06T04:03:55.259154+0000 mgr.smithi017.mljnlu (mgr.14180) 659 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:57.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:56 smithi017 conmon[82019]: cluster 2023-12-06T04:03:55.259154+0000 2023-12-06T04:03:57.286 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:56 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 659 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:57.287 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:03:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:57 smithi169 conmon[87179]: audit 2023-12-06T04:03:56.854252+0000 mgr.smithi017.mljnlu (mgr.14180) 660 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:58.288 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:03:58.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:57 smithi017 conmon[82019]: audit 2023-12-06T04:03:56.854252+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:03:58.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:57 smithi017 conmon[82019]: ) 660 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:03:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:03:58 smithi169 conmon[87179]: cluster 2023-12-06T04:03:57.260039+0000 mgr.smithi017.mljnlu (mgr.14180) 661 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:03:59.272 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:03:58 smithi017 conmon[82019]: cluster 2023-12-06T04:03:57.260039+0000 mgr.smithi017.mljnlu (mgr.14180) 661 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:00.153 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:00.154 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:00.642 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:00 smithi169 conmon[87179]: cluster 2023-12-06T04:03:59.260925+0000 mgr.smithi017.mljnlu (mgr.14180) 662 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:00 smithi017 conmon[82019]: cluster 2023-12-06T04:03:59.260925+0000 mgr.smithi017.mljnlu (mgr.14180) 662 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:01.643 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:02.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:01 smithi017 conmon[82019]: audit 2023-12-06T04:04:00.148729 2023-12-06T04:04:02.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:01 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 663 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:01 smithi169 conmon[87179]: audit 2023-12-06T04:04:00.148729+0000 mgr.smithi017.mljnlu (mgr.14180) 663 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:02 smithi169 conmon[87179]: cluster 2023-12-06T04:04:01.261827+0000 mgr.smithi017.mljnlu (mgr.14180) 664 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:02 smithi017 conmon[82019]: cluster 2023-12-06T04:04:01.261827+0000 mgr.smithi017.mljnlu (mgr.14180) 664 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:03.440 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:03.441 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:03.892 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:04.893 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:04 smithi169 conmon[87179]: cluster 2023-12-06T04:04:03.262443+0000 mgr.smithi017.mljnlu (mgr.14180) 665 : cluster [DBG] pgmap v459: 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-12-06T04:04:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:04 smithi169 conmon[87179]: audit 2023-12-06T04:04:03.436187+0000 mgr.smithi017.mljnlu (mgr.14180) 666 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:04 smithi017 conmon[82019]: cluster 2023-12-06T04:04:03.262443+0000 mgr.smithi017.mljnlu (mgr.14180) 665 : 2023-12-06T04:04:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:04 smithi017 conmon[82019]: cluster [DBG] pgmap v459: 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-12-06T04:04:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:04 smithi017 conmon[82019]: audit 2023-12-06T04:04:03.436187+0000 mgr.smithi017.mljnlu (mgr.14180) 666 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:06.843 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:06.843 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:06 smithi169 conmon[87179]: cluster 2023-12-06T04:04:05.262943+0000 mgr.smithi017.mljnlu (mgr.14180) 667 : cluster [DBG] 2023-12-06T04:04:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:06 smithi169 conmon[87179]: pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:07.256 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:06 smithi017 conmon[82019]: cluster 2023-12-06T04:04:05.262943+0000 mgr.smithi017.mljnlu (mgr.14180) 667 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:07.258 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:07 smithi169 conmon[87179]: audit 2023-12-06T04:04:06.838821+0000 mgr.smithi017.mljnlu (mgr.14180) 668 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:08.258 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:08.289 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:07 smithi017 conmon[82019]: audit 2023-12-06T04:04:06.838821+0000 mgr.smithi017.mljnlu (mgr.14180) 668 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:08 smithi017 conmon[82019]: cluster 2023-12-06T04:04:07.263614 2023-12-06T04:04:09.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:08 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 669 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:08 smithi169 conmon[87179]: cluster 2023-12-06T04:04:07.263614+0000 mgr.smithi017.mljnlu (mgr.14180) 669 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:09.974 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:09.975 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:10.408 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:10 smithi169 conmon[87179]: cluster 2023-12-06T04:04:09.264304+0000 mgr.smithi017.mljnlu (mgr.14180) 670 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:10 smithi169 conmon[87179]: audit 2023-12-06T04:04:09.970160+0000 mgr.smithi017.mljnlu (mgr.14180) 671 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:10 smithi017 conmon[82019]: cluster 2023-12-06T04:04:09.264304+0000 mgr.smithi017.mljnlu (mgr.14180) 670 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:10 smithi017 conmon[82019]: audit 2023-12-06T04:04:09.970160+0000 mgr.smithi017.mljnlu (mgr.14180) 671 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:11.409 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:12 smithi169 conmon[87179]: cluster 2023-12-06T04:04:11.265058+0000 mgr.smithi017.mljnlu (mgr.14180) 672 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:13.286 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:13.286 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:13.313 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:12 smithi017 conmon[82019]: cluster 2023-12-06T04:04:11.265058+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:04:13.313 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:12 smithi017 conmon[82019]: .14180) 672 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:13.674 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:14.675 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:14 smithi017 conmon[82019]: cluster 2023-12-06T04:04:13.265650+0000 mgr.smithi017.mljnlu (mgr.14180) 673 : cluster [DBG] pgmap v464: 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-12-06T04:04:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:14 smithi017 conmon[82019]: audit 2023-12-06T04:04:13.281272+0000 mgr.smithi017.mljnlu (mgr.14180) 674 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:14 smithi169 conmon[87179]: cluster 2023-12-06T04:04:13.265650+0000 mgr.smithi017.mljnlu (mgr.14180) 673 : cluster [DBG] pgmap v464: 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-12-06T04:04:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:14 smithi169 conmon[87179]: audit 2023-12-06T04:04:13 2023-12-06T04:04:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:14 smithi169 conmon[87179]: .281272+0000 mgr.smithi017.mljnlu (mgr.14180) 674 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:16.609 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:16.609 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:17.127 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:16 smithi169 conmon[87179]: cluster 2023-12-06T04:04:15.266212+0000 mgr.smithi017.mljnlu (mgr.14180) 675 : 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-12-06T04:04:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:16 smithi017 conmon[82019]: cluster 2023-12-06T04:04:15.266212+0000 2023-12-06T04:04:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:16 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 675 : 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-12-06T04:04:18.128 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:18.160 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:17 smithi017 conmon[82019]: audit 2023-12-06T04:04:16.602177+0000 mgr.smithi017.mljnlu (mgr.14180) 676 2023-12-06T04:04:18.160 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:17 smithi017 conmon[82019]: : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:18.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:17 smithi169 conmon[87179]: audit 2023-12-06T04:04:16.602177+0000 mgr.smithi017.mljnlu (mgr.14180) 676 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:19.169 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:18 smithi017 conmon[82019]: cluster 2023-12-06T04:04:17.266891+0000 mgr.smithi017.mljnlu (mgr.14180) 677 : 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-12-06T04:04:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:18 smithi169 conmon[87179]: cluster 2023-12-06T04:04:17.266891+0000 mgr.smithi017.mljnlu (mgr.14180) 677 : 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-12-06T04:04:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:18 smithi169 conmon[87179]: 2023-12-06T04:04:20.066 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:20.066 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:20.483 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:20 smithi169 conmon[87179]: cluster 2023-12-06T04:04:19.267697+0000 mgr.smithi017.mljnlu (mgr.14180) 678 : 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-12-06T04:04:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:20 smithi169 conmon[87179]: audit 2023-12 2023-12-06T04:04:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:20 smithi169 conmon[87179]: -06T04:04:20.061888+0000 mgr.smithi017.mljnlu (mgr.14180) 679 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:20 smithi017 conmon[82019]: cluster 2023-12-06T04:04:19.267697+0000 2023-12-06T04:04:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:20 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 678 : 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-12-06T04:04:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:20 smithi017 conmon[82019]: audit 2023-12-06T04:04:20.061888+0000 mgr.smithi017.mljnlu (mgr.14180) 679 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:21.484 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:22 smithi169 conmon[87179]: cluster 2023-12-06T04:04:21.268523+0000 mgr.smithi017.mljnlu (mgr.14180) 680 : cluster [DBG] 2023-12-06T04:04:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:22 smithi169 conmon[87179]: pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:22 smithi017 conmon[82019]: cluster 2023-12-06T04:04:21.268523 2023-12-06T04:04:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:22 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 680 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:23.464 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:23.464 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:23.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:24.869 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:24 smithi169 conmon[87179]: cluster 2023-12-06T04:04:23.269135+0000 mgr.smithi017.mljnlu (mgr.14180) 681 : cluster [DBG] pgmap v469: 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-12-06T04:04:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:24 smithi169 conmon[87179]: audit 2023-12-06T04:04:23.459907+0000 mgr.smithi017.mljnlu (mgr.14180) 682 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:25.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:24 smithi017 conmon[82019]: cluster 2023-12-06T04:04:23.269135+0000 2023-12-06T04:04:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:24 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 681 : cluster [DBG] pgmap v469: 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-12-06T04:04:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:24 smithi017 conmon[82019]: audit 2023-12-06T04:04:23.459907+0000 mgr.smithi017.mljnlu (mgr.14180) 682 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:26.876 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:26.876 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:26 smithi169 conmon[87179]: cluster 2023-12-06T04:04:25.269868+0000 mgr.smithi017.mljnlu (mgr.14180) 683 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:27.305 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:26 smithi017 conmon[82019]: cluster 2023-12-06T04:04:25.269868+0000 mgr.smithi017.mljnlu (mgr.14180) 683 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:04:27.306 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:27 smithi169 conmon[87179]: audit 2023-12-06T04:04:26.871459+0000 mgr.smithi017.mljnlu (mgr.14180) 684 : audit 2023-12-06T04:04:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:27 smithi169 conmon[87179]: [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:28.307 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:28.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:27 smithi017 conmon[82019]: audit 2023-12-06T04:04:26.871459+0000 mgr.smithi017.mljnlu (mgr.14180) 684 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:29.199 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:28 smithi017 conmon[82019]: cluster 2023-12-06T04:04:27.270640+0000 mgr.smithi017.mljnlu (mgr.14180) 685 : cluster [DBG] pgmap v471: 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, 41 op/s 2023-12-06T04:04:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:28 smithi169 conmon[87179]: cluster 2023-12-06T04:04:27.270640+0000 mgr.smithi017.mljnlu (mgr.14180) 685 : cluster [DBG] pgmap v471: 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, 41 op/s 2023-12-06T04:04:30.058 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:30.058 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:30.555 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:30 smithi169 conmon[87179]: cluster 2023-12-06T04:04:29.271259+0000 mgr.smithi017.mljnlu (mgr.14180) 686 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2023-12-06T04:04:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:30 smithi169 conmon[87179]: audit 2023-12-06T04:04:30.053531+0000 mgr.smithi017.mljnlu (mgr.14180) 687 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:30 smithi017 conmon[82019]: cluster 2023-12-06T04:04:29.271259+0000 mgr.smithi017.mljnlu (mgr.14180) 686 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2023-12-06T04:04:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:30 smithi017 conmon[82019]: audit 2023-12-06T04:04:30.053531+0000 mgr.smithi017.mljnlu (mgr.14180) 687 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:31.557 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:32 smithi169 conmon[87179]: cluster 2023-12-06T04:04:31.271970+0000 mgr.smithi017.mljnlu (mgr.14180) 688 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2023-12-06T04:04:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:32 smithi017 conmon[82019]: cluster 2023-12-06T04:04:31.271970+0000 mgr.smithi017.mljnlu (mgr.14180) 688 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 47 KiB/s rd, 0 B/s wr, 78 op/s 2023-12-06T04:04:33.481 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:33.482 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:29.802317Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:56:57.442143Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.hibybr on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-hibybr\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.hibybr\nDeploy daemon haproxy.nfs.foo.smithi169.hibybr ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:55:05Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:55:42Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:56:19Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.845494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.lwwyge on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-lwwyge\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.lwwyge\nDeploy daemon haproxy.nfs.foo.smithi017.lwwyge ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T03:57:34Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:11Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T03:58:49Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T03:59:26.851106Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.oiwtmu on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:29.802457Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:29.802533Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:29.802600Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:29.802665Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:29.802919Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:34.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cluster 2023-12-06T04:04:33.272597+0000 2023-12-06T04:04:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 689 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 82 op/s 2023-12-06T04:04:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: audit 2023-12-06T04:04:33.477338+0000 mgr.smithi017.mljnlu (mgr.14180) 690 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:35.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:33.911899+0000 mgr.smithi017.mljnlu (mgr.14180) 691 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:04:35.001 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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 rea 2023-12-06T04:04:35.002 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: ched your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:33.912050+0000 mgr.smithi017.mljnlu (mgr.14180) 692 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: audit 2023-12-06T04:04:33.912359+0000 mon.smithi017 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.adisun"}]: dispatch 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:33.912923+0000 mgr.smithi017.mljnlu (mgr.14180) 693 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.003 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.003 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:33.914109+0000 mgr.smithi017.mljnlu (mgr.14180) 694 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:33.915075+0000 mgr.smithi017.mljnlu (mgr.14180) 695 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cluster 2023-12-06T04:04:33.915924+0000 mgr.smithi017.mljnlu (mgr.14180) 696 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 56 KiB/s rd, 0 B/s wr, 93 op/s 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: audit 2023-12-06T04:04:33.919862+0000 mon.smithi017 (mon.0) 711 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T04:04:35.004 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: cluster 2023-12-06T04:04:33.954230+0000 mon.smithi017 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:04:35.005 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:34 smithi169 conmon[87179]: audit 2023-12-06T04:04:34.283207+0000 mon.smithi017 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:35.029 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cluster 2023-12-06T04:04:33.272597+0000 2023-12-06T04:04:35.029 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 689 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 0 B/s wr, 82 op/s 2023-12-06T04:04:35.029 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: audit 2023-12-06T04:04:33.477338+0000 mgr.smithi017.mljnlu (mgr.14180) 690 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:33.911899+0000 mgr.smithi017.mljnlu (mgr.14180) 691 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:04:35.030 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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 reac 2023-12-06T04:04:35.031 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: hed your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:33.912050+0000 mgr.smithi017.mljnlu (mgr.14180) 692 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: audit 2023-12-06T04:04:33.912359+0000 mon.smithi017 (mon.0) 710 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.adisun"}]: dispatch 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:33.912923+0000 mgr.smithi017.mljnlu (mgr.14180) 693 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.adisun ... 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:02:41Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.032 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:18Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:03:56Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:33.914109+0000 mgr.smithi017.mljnlu (mgr.14180) 694 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:33.915075+0000 mgr.smithi017.mljnlu (mgr.14180) 695 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cluster 2023-12-06T04:04:33.915924+0000 mgr.smithi017.mljnlu (mgr.14180) 696 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 56 KiB/s rd, 0 B/s wr, 93 op/s 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: audit 2023-12-06T04:04:33.919862+0000 mon.smithi017 (mon.0) 711 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: cluster 2023-12-06T04:04:33.954230+0000 mon.smithi017 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:04:35.033 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:34 smithi017 conmon[82019]: audit 2023-12-06T04:04:34.283207+0000 mon.smithi017 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:36 smithi169 conmon[87179]: cluster 2023-12-06T04:04:35. 2023-12-06T04:04:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:36 smithi169 conmon[87179]: 916668+0000 mgr.smithi017.mljnlu (mgr.14180) 697 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 57 KiB/s rd, 0 B/s wr, 94 op/s 2023-12-06T04:04:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:36 smithi169 conmon[87179]: audit 2023-12-06T04:04:36.648556+0000 mon.smithi017 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:36 smithi017 conmon[82019]: cluster 2023-12-06T04:04:35.916668+0000 mgr.smithi017.mljnlu (mgr.14180) 697 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 57 KiB/s rd, 0 B/s wr, 94 op/s 2023-12-06T04:04:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:36 smithi017 conmon[82019]: audit 2023-12-06T04:04:36.648556+0000 mon.smithi017 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:37.486 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:37.486 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T03:59:34.689146Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T03:59:34.689299Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T03:59:34.689448Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T03:59:34.688979Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T03:59:34.688763Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T03:59:34.690618Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T03:59:34.689594Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T03:59:34.689886Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T03:59:34.689739Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T03:59:34.690475Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:38.049 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.117919+0000 mon.smithi017 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.121040+0000 mon.smithi017 (mon.0) 716 : audit 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: .481906+0000 mgr.smithi017.mljnlu (mgr.14180) 698 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.515278+0000 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: mon.smithi017 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.516124+0000 2023-12-06T04:04:38.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: mon.smithi017 (mon.0) 718 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.516746+0000 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: mon.smithi017 (mon.0) 719 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12-06T04:04:37.517375+0000 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: mon.smithi017 (mon.0) 720 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: cephadm 2023-12 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: -06T04:04:37.517872+0000 mgr.smithi017.mljnlu (mgr.14180) 699 : cephadm 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: [INF] Adjusting osd_memory_target on smithi169 to 3748M 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: audit 2023-12- 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: 06T04:04:37.521754+0000 mon.smithi017 (mon.0) 721 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: cluster 2023-12-06T04: 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: 04:37.917862+0000 mgr.smithi017.mljnlu (mgr.14180) 700 : cluster [DBG] 2023-12-06T04:04:38.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:38 smithi017 conmon[82019]: pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 48 op/s 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04:37.117919+0000 mon.smithi017 (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: T04:04:37.121040+0000 mon.smithi017 (mon.0) 716 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04:37.481906+0000 mgr.smithi017.mljnlu (mgr.14180) 698 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T04:04:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: T04:04:37.515278+0000 mon.smithi017 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: :37.516124+0000 mon.smithi017 (mon.0) 718 : 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04: 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: 37.516746+0000 mon.smithi017 (mon.0) 719 : 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04:37.517375+0000 mon.smithi017 (mon.0) 720 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:37.517872+0000 mgr.smithi017.mljnlu (mgr.14180) 699 : cephadm [INF] Adjusting osd_memory_target on smithi169 to 3748M 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: audit 2023-12-06T04:04:37.521754+0000 mon.smithi017 (mon.0 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: ) 721 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: cluster 2023-12-06T04:04:37 2023-12-06T04:04:38.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:38 smithi169 conmon[87179]: .917862+0000 mgr.smithi017.mljnlu (mgr.14180) 700 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 48 op/s 2023-12-06T04:04:39.050 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:40 smithi169 conmon[87179]: cluster 2023-12-06T04:04:39.918572+0000 mgr.smithi017.mljnlu (mgr.14180) 701 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.6 KiB/s rd, 0 B/s wr, 7 op/s 2023-12-06T04:04:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:40 smithi169 conmon[87179]: audit 2023-12-06T04: 2023-12-06T04:04:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:40 smithi169 conmon[87179]: 04:40.857579+0000 mon.smithi017 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:41.265 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:41.265 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:41.294 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:40 smithi017 conmon[82019]: cluster 2023-12-06T04:04:39.918572+0000 mgr.smithi017.mljnlu (mgr.14180) 701 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.6 KiB/s rd, 0 B/s wr, 7 op/s 2023-12-06T04:04:41.294 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:40 smithi017 conmon[82019]: audit 2023-12-06T04:04:40.857579+0000 mon.smithi017 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:41.723 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.288233+0000 mon.smithi017 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.288895+0000 mon.smithi017 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.289489+0000 mon.smithi017 (mon.0) 725 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.290066+0000 mon.smithi017 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.294932+0000 mon.smithi017 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.296746+0000 mon.smithi017 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.297368+0000 mon.smithi017 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T04:04:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.467293+0000 mon.smithi017 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.471820+0000 mon.smithi017 (mon.0) 731 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T04:04:42.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:41 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.479009+0000 mon.smithi017 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.288233+0000 mon.smithi017 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.288895+0000 mon.smithi017 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.289489+0000 mon.smithi017 (mon.0) 725 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.290066+0000 mon.smithi017 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.294932+0000 mon.smithi017 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.296746+0000 mon.smithi017 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.297368+0000 mon.smithi017 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.467293+0000 mon.smithi017 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.471820+0000 mon.smithi017 (mon.0) 731 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T04:04:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:41 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.479009+0000 mon.smithi017 (mon.0) 732 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:42.724 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: audit 2023-12-06T04:04:41.260972+0000 mgr.smithi017.mljnlu 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: (mgr.14180) 702 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:41.290584+0000 mgr.smithi017.mljnlu (mgr.14180) 703 : cephadm [INF] Adjusting osd_memory_target on smithi017 to 2725M 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:04:41.300459+0000 mgr.smithi017.mljnlu (mgr.14180) 704 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cluster 2023-12-06T04:04:41 2023-12-06T04:04:43.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: .468288+0000 mgr.smithi017.mljnlu (mgr.14180) 705 : cluster [DBG] pgmap v479: 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-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:04: 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: 41.481398+0000 mgr.smithi017.mljnlu (mgr.14180) 706 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.iosija on smithi169 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cluster 2023-12-06T04:04:42 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: .465578+0000 mon.smithi017 (mon.0) 733 : cluster [INF] 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: cluster 2023 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: -12-06T04:04:42.465621+0000 mon.smithi017 (mon 2023-12-06T04:04:43.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:42 smithi017 conmon[82019]: .0) 734 : cluster [INF] Cluster is now healthy 2023-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: audit 2023-12-06T04:04:41.260972+0000 mgr.smithi017.mljnlu (mgr.14180) 702 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cephadm 2023-12-06T04: 2023-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: 04:41.290584+0000 mgr.smithi017.mljnlu (mgr.14180) 703 : cephadm [INF] Adjusting osd_memory_target on smithi017 to 2725M 2023-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:41.300459+0000 mgr.smithi017.mljnlu (mgr.14180) 704 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cluster 2023-12-06T04:04:41.468288+0000 mgr.smithi017.mljnlu (mgr.14180) 705 : cluster [DBG] pgmap v479: 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-12-06T04:04:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: 2023-12-06T04:04:41.481398+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: 14180) 706 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.iosija on smithi169 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cluster 2023-12-06T04:04: 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: 42.465578+0000 mon.smithi017 (mon.0) 733 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: cluster 2023-12-06 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: T04:04:42.465621+0000 mon.smithi017 (mon.0) 734 : cluster [INF] 2023-12-06T04:04:43.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:42 smithi169 conmon[87179]: Cluster is now healthy 2023-12-06T04:04:44.536 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:44.537 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:44.988 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:44 smithi169 conmon[87179]: cluster 2023-12-06T04:04:43.469075+0000 mgr.smithi017.mljnlu (mgr.14180) 707 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.8 KiB/s rd, 0 B/s wr, 4 op/s 2023-12-06T04:04:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:44 smithi017 conmon[82019]: cluster 2023-12-06T04:04:43.469075+0000 mgr.smithi017.mljnlu (mgr.14180) 707 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.8 KiB/s rd, 0 B/s wr, 4 op/s 2023-12-06T04:04:45.989 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:45 smithi169 conmon[87179]: audit 2023-12-06T04:04:44.530758+0000 mgr.smithi017.mljnlu (mgr.14180) 708 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:45 smithi017 conmon[82019]: audit 2023-12-06T04:04:44.530758+0000 mgr.smithi017.mljnlu (mgr.14180) 708 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:46 smithi169 conmon[87179]: cluster 2023-12-06T04:04:45.469822+0000 mgr.smithi017.mljnlu (mgr.14180) 709 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 0 B/s wr, 3 op/s 2023-12-06T04:04:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:46 smithi169 conmon[87179]: 2023-12-06T04:04:47.264 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:46 smithi017 conmon[82019]: cluster 2023-12-06T04:04:45.469822+0000 mgr.smithi017.mljnlu (mgr.14180) 709 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 0 B/s wr, 3 op/s 2023-12-06T04:04:47.953 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:47.954 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:48.447 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:48 smithi169 conmon[87179]: cluster 2023-12-06T04:04:47.470438+0000 mgr.smithi017.mljnlu (mgr.14180) 710 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 2 op/s 2023-12-06T04:04:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:48 smithi169 conmon[87179]: audit 2023-12-06T04:04:47.948986+0000 mgr.smithi017.mljnlu (mgr.14180) 711 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:48 smithi017 conmon[82019]: cluster 2023-12-06T04:04:47.470438+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:04:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:48 smithi017 conmon[82019]: 14180) 710 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 2 op/s 2023-12-06T04:04:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:48 smithi017 conmon[82019]: audit 2023-12-06T04:04:47.948986+0000 mgr.smithi017.mljnlu (mgr.14180) 711 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:49.448 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:50 smithi169 conmon[87179]: cluster 2023-12-06T04:04:49.471365+0000 mgr.smithi017.mljnlu (mgr.14180) 712 : cluster 2023-12-06T04:04:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:50 smithi169 conmon[87179]: [DBG] pgmap v483: 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-12-06T04:04:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:50 smithi017 conmon[82019]: cluster 2023-12-06T04:04:49.471365+0000 mgr.smithi017.mljnlu (mgr.14180) 712 : cluster [DBG] pgmap v483: 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-12-06T04:04:51.501 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:51.501 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:51.994 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:52.995 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:52 smithi169 conmon[87179]: cluster 2023-12-06T04:04:51.471969+0000 mgr.smithi017.mljnlu (mgr.14180) 713 : cluster [DBG] pgmap v484: 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-12-06T04:04:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:52 smithi169 conmon[87179]: audit 2023-12-06T04:04:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:52 smithi169 conmon[87179]: 2023-12-06T04:04:51.496642+0000 mgr.smithi017.mljnlu (mgr.14180) 714 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:53.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:52 smithi169 conmon[87179]: audit 2023-12-06T04:04:51.649294+0000 mon.smithi017 (mon.0) 735 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:53.027 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:52 smithi017 conmon[82019]: cluster 2023-12-06T04:04:51.471969+0000 mgr.smithi017.mljnlu (mgr.14180) 713 : cluster [DBG] pgmap v484: 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-12-06T04:04:53.027 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:52 smithi017 conmon[82019]: audit 2023-12-06T04:04:51.496642+0000 mgr.smithi017.mljnlu (mgr.14180) 714 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:53.027 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:52 smithi017 conmon[82019]: audit 2023-12-06T04:04:51.649294+0000 mon.smithi017 (mon.0) 735 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:04:54.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:54 smithi017 conmon[82019]: cluster 2023-12-06T04:04:53.472694+0000 mgr.smithi017.mljnlu (mgr.14180) 715 : cluster [DBG] pgmap v485: 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-12-06T04:04:54.972 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:54.972 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:55.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:54 smithi169 conmon[87179]: cluster 2023-12-06T04:04:53.472694+0000 mgr.smithi017.mljnlu (mgr.14180) 715 : cluster [DBG] pgmap v485: 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-12-06T04:04:55.449 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:56.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:55 smithi017 conmon[82019]: audit 2023-12-06T04:04:54.968143+0000 mgr.smithi017.mljnlu (mgr.14180) 716 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:55 smithi169 conmon[87179]: audit 2023-12-06T04:04:54.968143+0000 mgr.smithi017.mljnlu (mgr.14180) 716 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:04:56.450 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:04:57.060 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:56 smithi017 conmon[82019]: cluster 2023-12-06T04:04:55.473215+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:04:57.060 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:56 smithi017 conmon[82019]: mgr.14180) 717 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 op/s 2023-12-06T04:04:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:56 smithi169 conmon[87179]: cluster 2023-12-06T04:04:55.473215+0000 mgr.smithi017.mljnlu (mgr.14180) 717 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 op/s 2023-12-06T04:04:58.434 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:04:58.434 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:04:58.904 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:04:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:58 smithi017 conmon[82019]: cluster 2023-12-06T04:04:57.473784+0000 mgr.smithi017.mljnlu (mgr.14180) 718 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T04:04:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:58 smithi169 conmon[87179]: cluster 2023-12-06T04:04:57.473784+0000 mgr.smithi017.mljnlu (mgr.14180) 718 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-06T04:04:59.905 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:00.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:59 smithi017 conmon[82019]: audit 2023-12-06T04:04:58.429029+0000 mgr.smithi017.mljnlu 2023-12-06T04:05:00.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:04:59 smithi017 conmon[82019]: (mgr.14180) 719 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:04:59 smithi169 conmon[87179]: audit 2023-12-06T04:04:58.429029+0000 mgr.smithi017.mljnlu (mgr.14180) 719 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:00 smithi017 conmon[82019]: cluster 2023-12-06T04:04:59. 2023-12-06T04:05:00.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:00 smithi017 conmon[82019]: 474509+0000 mgr.smithi017.mljnlu (mgr.14180) 720 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:01.018 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:00 smithi169 conmon[87179]: cluster 2023-12-06T04:04:59.474509+0000 mgr.smithi017.mljnlu (mgr.14180) 720 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:01.895 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:01.895 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:02.367 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:02 smithi017 conmon[82019]: cluster 2023-12-06T04:05:01.475182+0000 mgr.smithi017.mljnlu (mgr.14180) 721 : 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-12-06T04:05:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:02 smithi017 conmon[82019]: audit 2023-12-06T04:05:01.889994+0000 mgr.smithi017.mljnlu (mgr.14180) 722 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:02 smithi169 conmon[87179]: cluster 2023-12-06T04:05:01.475182+0000 mgr.smithi017.mljnlu (mgr.14180) 721 : 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-12-06T04:05:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:02 smithi169 conmon[87179]: audit 2023-12-06T04:05:01.889994+0000 mgr.smithi017.mljnlu (mgr.14180) 722 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:03.368 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:04 smithi017 conmon[82019]: cluster 2023-12-06T04:05:03.475872+0000 mgr.smithi017.mljnlu 2023-12-06T04:05:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:04 smithi017 conmon[82019]: (mgr.14180) 723 : cluster [DBG] pgmap v490: 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-12-06T04:05:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:04 smithi169 conmon[87179]: cluster 2023-12-06T04:05:03.475872+0000 mgr.smithi017.mljnlu (mgr.14180) 723 : cluster [DBG] pgmap v490: 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-12-06T04:05:05.308 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:05.308 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:05.720 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:06.722 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:07.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:06 smithi017 conmon[82019]: audit 2023-12-06T04:05:05.303284+0000 mgr.smithi017.mljnlu (mgr.14180) 724 : audit [DBG] 2023-12-06T04:05:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:06 smithi017 conmon[82019]: from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:07.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:06 smithi017 conmon[82019]: cluster 2023-12-06T04:05:05.476368+0000 mgr.smithi017.mljnlu (mgr.14180) 725 : 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-12-06T04:05:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:06 smithi169 conmon[87179]: audit 2023-12-06T04:05:05.303284+0000 mgr.smithi017.mljnlu (mgr.14180) 724 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:06 smithi169 conmon[87179]: cluster 2023-12-06T04:05:05.476368+0000 mgr.smithi017.mljnlu (mgr.14180) 725 : 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-12-06T04:05:08.707 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:08.707 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:09.066 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:08 smithi017 conmon[82019]: cluster 2023-12-06T04:05:07.476901+0000 2023-12-06T04:05:09.066 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:08 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 726 : 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-12-06T04:05:09.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:08 smithi169 conmon[87179]: cluster 2023-12-06T04:05:07.476901+0000 mgr.smithi017.mljnlu (mgr.14180) 726 : 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-12-06T04:05:10.069 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:10.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:09 smithi017 conmon[82019]: audit 2023-12-06T04:05:08.702455+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:05:10.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:09 smithi017 conmon[82019]: 727 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:09 smithi169 conmon[87179]: audit 2023-12-06T04:05:08.702455+0000 mgr.smithi017.mljnlu (mgr.14180) 727 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:10 smithi017 conmon[82019]: cluster 2023-12-06T04:05:09.477789+0000 2023-12-06T04:05:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:10 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 728 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:10 smithi169 conmon[87179]: cluster 2023-12-06T04:05:09.477789+0000 mgr.smithi017.mljnlu (mgr.14180) 728 : cluster 2023-12-06T04:05:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:10 smithi169 conmon[87179]: [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:12.035 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:12.036 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:12.519 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:12 smithi017 conmon[82019]: cluster 2023-12-06T04:05:11.478385+0000 mgr.smithi017.mljnlu (mgr.14180) 729 : 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-12-06T04:05:13.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:12 smithi017 conmon[82019]: audit 2023-12-06T04:05:12.030928+0000 mgr.smithi017.mljnlu (mgr.14180) 730 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:12 smithi169 conmon[87179]: cluster 2023-12-06T04:05:11.478385+0000 mgr.smithi017.mljnlu (mgr.14180) 729 : 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-12-06T04:05:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:12 smithi169 conmon[87179]: audit 2023 2023-12-06T04:05:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:12 smithi169 conmon[87179]: -12-06T04:05:12.030928+0000 mgr.smithi017.mljnlu (mgr.14180) 730 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:13.520 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:15.049 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:14 smithi017 conmon[82019]: cluster 2023-12-06T04:05:13.479265+0000 mgr.smithi017.mljnlu (mgr.14180) 731 : cluster [DBG] pgmap v495: 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-12-06T04:05:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:14 smithi169 conmon[87179]: cluster 2023-12-06T04:05:13.479265+0000 mgr.smithi017.mljnlu (mgr.14180) 731 : cluster [DBG] pgmap v495: 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-12-06T04:05:15.390 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:15.390 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:15.888 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:16.889 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:16 smithi017 conmon[82019]: audit 2023-12-06T04:05:15.385322+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:05:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:16 smithi017 conmon[82019]: .14180) 732 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:16 smithi017 conmon[82019]: cluster 2023-12-06T04:05:15.480072+0000 mgr.smithi017.mljnlu (mgr.14180) 733 : 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-12-06T04:05:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:16 smithi169 conmon[87179]: audit 2023-12-06T04:05:15.385322+0000 mgr.smithi017.mljnlu (mgr.14180) 732 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:16 smithi169 conmon[87179]: cluster 2023-12-06T04:05:15.480072+0000 mgr.smithi017.mljnlu (mgr.14180) 733 : 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-12-06T04:05:18.889 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:18.889 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:18 smithi017 conmon[82019]: cluster 2023-12-06T04:05:17.480823+0000 mgr.smithi017.mljnlu (mgr.14180) 734 : 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-12-06T04:05:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:18 smithi169 conmon[87179]: cluster 2023-12-06T04:05:17.480823+0000 mgr.smithi017.mljnlu (mgr.14180) 734 : 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-12-06T04:05:19.356 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:19 smithi017 conmon[82019]: audit 2023-12-06T04:05:18.884308+0000 mgr.smithi017.mljnlu (mgr.14180) 735 2023-12-06T04:05:20.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:19 smithi017 conmon[82019]: : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:19 smithi169 conmon[87179]: audit 2023-12-06T04:05:18.884308+0000 mgr.smithi017.mljnlu (mgr.14180) 735 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:20.357 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:20 smithi017 conmon[82019]: cluster 2023-12-06T04:05:19.481502+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:05:21.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:20 smithi017 conmon[82019]: .14180) 736 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:20 smithi169 conmon[87179]: cluster 2023-12-06T04:05:19.481502+0000 mgr.smithi017.mljnlu (mgr.14180) 736 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:22.328 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:22.328 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:22.823 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:22 smithi017 conmon[82019]: cluster 2023-12-06T04:05:21.482128+0000 mgr.smithi017.mljnlu (mgr.14180) 737 : 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-12-06T04:05:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:22 smithi169 conmon[87179]: cluster 2023-12-06T04:05:21.482128+0000 mgr.smithi017.mljnlu (mgr.14180) 737 : 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-12-06T04:05:23.824 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:24.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:23 smithi017 conmon[82019]: audit 2023-12-06T04:05:22.323618+0000 mgr.smithi017.mljnlu (mgr.14180) 738 : audit [DBG] 2023-12-06T04:05:24.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:23 smithi017 conmon[82019]: from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:23 smithi169 conmon[87179]: audit 2023-12-06T04:05:22.323618+0000 mgr.smithi017.mljnlu (mgr.14180) 738 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:25.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:24 smithi017 conmon[82019]: cluster 2023-12-06T04:05:23.483130+0000 mgr.smithi017.mljnlu (mgr.14180) 739 : cluster [DBG] pgmap v500: 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-12-06T04:05:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:24 smithi169 conmon[87179]: cluster 2023-12-06T04:05:23.483130+0000 mgr.smithi017.mljnlu (mgr.14180) 739 : cluster 2023-12-06T04:05:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:24 smithi169 conmon[87179]: [DBG] pgmap v500: 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-12-06T04:05:25.662 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:25.662 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:26.174 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:27.175 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:27.205 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:26 smithi017 conmon[82019]: cluster 2023-12-06T04:05:25.483604+0000 mgr.smithi017.mljnlu (mgr.14180) 740 : 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-12-06T04:05:27.205 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:26 smithi017 conmon[82019]: audit 2023-12-06T04:05:25.657815+0000 mgr.smithi017.mljnlu (mgr.14180) 741 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:26 smithi169 conmon[87179]: cluster 2023-12-06T04:05:25.483604+0000 mgr.smithi017.mljnlu (mgr.14180) 740 : 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-12-06T04:05:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:26 smithi169 conmon[87179]: audit 2023-12-06 2023-12-06T04:05:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:26 smithi169 conmon[87179]: T04:05:25.657815+0000 mgr.smithi017.mljnlu (mgr.14180) 741 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:28 smithi017 conmon[82019]: cluster 2023-12-06T04:05:27.484291+0000 mgr.smithi017.mljnlu (mgr.14180) 742 : 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-12-06T04:05:29.084 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:29.084 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:28 smithi169 conmon[87179]: cluster 2023-12-06T04:05:27.484291+0000 mgr.smithi017.mljnlu (mgr.14180) 742 : 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-12-06T04:05:29.537 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:29 smithi169 conmon[87179]: audit 2023-12-06T04:05:29.080077+0000 mgr.smithi017.mljnlu (mgr.14180) 743 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:29 smithi017 conmon[82019]: audit 2023-12-06T04:05:29.080077+0000 mgr.smithi017.mljnlu (mgr.14180) 743 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:30.538 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:31.153 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:30 smithi017 conmon[82019]: cluster 2023-12-06T04:05:29.485012+0000 mgr.smithi017.mljnlu (mgr.14180) 744 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:30 smithi169 conmon[87179]: cluster 2023-12-06T04:05:29.485012+0000 mgr.smithi017.mljnlu (mgr.14180) 744 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:32.598 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:32.598 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:33.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:32 smithi017 conmon[82019]: cluster 2023-12-06T04:05:31.485565+0000 mgr.smithi017.mljnlu (mgr.14180) 745 : cluster 2023-12-06T04:05:33.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:32 smithi017 conmon[82019]: [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-12-06T04:05:33.105 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:32 smithi169 conmon[87179]: cluster 2023-12-06T04:05:31.485565+0000 mgr.smithi017.mljnlu (mgr.14180) 745 : 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-12-06T04:05:34.106 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:34.137 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:33 smithi017 conmon[82019]: audit 2023-12-06T04:05:32.592911+0000 2023-12-06T04:05:34.137 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:33 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 746 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:33 smithi169 conmon[87179]: audit 2023-12-06T04:05:32.592911+0000 mgr.smithi017.mljnlu (mgr.14180) 746 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:35.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:34 smithi017 conmon[82019]: cluster 2023-12-06T04:05:33.486260+0000 mgr.smithi017.mljnlu (mgr.14180) 747 : cluster [DBG] pgmap v505: 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-12-06T04:05:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:34 smithi169 conmon[87179]: cluster 2023-12-06T04:05:33.486260+0000 mgr.smithi017.mljnlu (mgr.14180) 747 : cluster [DBG] 2023-12-06T04:05:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:34 smithi169 conmon[87179]: pgmap v505: 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-12-06T04:05:36.006 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:36.006 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:36.459 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:36 smithi169 conmon[87179]: cluster 2023-12-06T04:05:35.486755+0000 mgr.smithi017.mljnlu (mgr.14180) 748 : 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-12-06T04:05:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:36 smithi169 conmon[87179]: audit 2023-12-06T 2023-12-06T04:05:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:36 smithi169 conmon[87179]: 04:05:36.001519+0000 mgr.smithi017.mljnlu (mgr.14180) 749 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:36 smithi017 conmon[82019]: cluster 2023-12-06T04:05:35.486755+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:05:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:36 smithi017 conmon[82019]: .14180) 748 : 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-12-06T04:05:37.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:36 smithi017 conmon[82019]: audit 2023-12-06T04:05:36.001519+0000 mgr.smithi017.mljnlu (mgr.14180) 749 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:37.460 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:38 smithi169 conmon[87179]: cluster 2023-12-06T04:05:37.487415+0000 mgr.smithi017.mljnlu (mgr.14180) 750 : 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-12-06T04:05:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:38 smithi017 conmon[82019]: cluster 2023-12-06T04:05:37.487415+0000 mgr.smithi017.mljnlu (mgr.14180) 750 : 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-12-06T04:05:39.420 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:39.421 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:39.919 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:40.920 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:40 smithi169 conmon[87179]: audit 2023-12-06T04:05:39.416210+0000 mgr.smithi017.mljnlu (mgr.14180) 751 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:40 smithi169 conmon[87179]: cluster 2023-12-06T04:05:39.488047+0000 mgr.smithi017.mljnlu (mgr.14180) 752 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:40 smithi017 conmon[82019]: audit 2023-12-06T04:05:39.416210+0000 mgr.smithi017.mljnlu (mgr.14180) 751 2023-12-06T04:05:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:40 smithi017 conmon[82019]: : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:40 smithi017 conmon[82019]: cluster 2023-12-06T04:05:39.488047+0000 mgr.smithi017.mljnlu (mgr.14180) 752 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:42.954 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:42.954 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:43.199 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:42 smithi017 conmon[82019]: cluster 2023-12-06T04:05:41.488747+0000 mgr.smithi017.mljnlu (mgr.14180) 753 : 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-12-06T04:05:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:42 smithi169 conmon[87179]: cluster 2023-12-06T04:05:41.488747+0000 mgr.smithi017.mljnlu (mgr.14180) 753 : 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-12-06T04:05:43.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:43 smithi169 conmon[87179]: audit 2023-12-06T04:05:42.949490+0000 mgr.smithi017.mljnlu (mgr.14180) 754 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:43 smithi017 conmon[82019]: audit 2023-12-06T04:05:42.949490+0000 mgr.smithi017.mljnlu (mgr.14180) 754 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:44.472 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:45.121 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:44 smithi017 conmon[82019]: cluster 2023-12-06T04:05:43.489546 2023-12-06T04:05:45.121 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:44 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 755 : cluster [DBG] pgmap v510: 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-12-06T04:05:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:44 smithi169 conmon[87179]: cluster 2023-12-06T04:05:43.489546+0000 mgr.smithi017.mljnlu (mgr.14180) 755 : cluster [DBG] pgmap v510: 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-12-06T04:05:46.472 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:46.472 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:46.933 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:46 smithi169 conmon[87179]: cluster 2023-12-06T04:05:45.490272+0000 mgr.smithi017.mljnlu (mgr.14180) 756 : 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-12-06T04:05:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:46 smithi017 conmon[82019]: cluster 2023-12-06T04:05:45.490272+0000 mgr.smithi017.mljnlu (mgr.14180) 756 : 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-12-06T04:05:47.934 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:48.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:47 smithi169 conmon[87179]: audit 2023-12-06T04:05:46.467772+0000 mgr.smithi017.mljnlu (mgr.14180) 757 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:48.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:47 smithi017 conmon[82019]: audit 2023-12-06T04:05:46.467772+0000 mgr.smithi017.mljnlu (mgr.14180) 757 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:49.128 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:48 smithi017 conmon[82019]: cluster 2023-12-06 2023-12-06T04:05:49.128 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:48 smithi017 conmon[82019]: T04:05:47.490977+0000 mgr.smithi017.mljnlu (mgr.14180) 758 : 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-12-06T04:05:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:48 smithi169 conmon[87179]: cluster 2023-12-06T04:05:47.490977+0000 mgr.smithi017.mljnlu (mgr.14180) 758 : 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-12-06T04:05:49.755 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:49.756 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:50.285 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:50 smithi169 conmon[87179]: cluster 2023-12-06T04:05:49.491791+0000 mgr.smithi017.mljnlu (mgr.14180) 759 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:50 smithi169 conmon[87179]: audit 2023-12-06T04:05:49.749311+0000 mgr.smithi017.mljnlu (mgr.14180) 760 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:51.286 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:51.317 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:50 smithi017 conmon[82019]: cluster 2023-12-06T04:05:49.491791+0000 mgr.smithi017.mljnlu (mgr.14180) 759 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:05:51.317 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:50 smithi017 conmon[82019]: audit 2023-12-06T04:05:49.749311+0000 mgr.smithi017.mljnlu (mgr.14180) 760 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:52 smithi017 conmon[82019]: cluster 2023-12-06T04:05:51.492398 2023-12-06T04:05:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:52 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 761 : 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-12-06T04:05:53.223 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:53.223 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:52 smithi169 conmon[87179]: cluster 2023-12-06T04:05:51.492398+0000 mgr.smithi017.mljnlu (mgr.14180) 761 : 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-12-06T04:05:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:52 smithi169 conmon[87179]: 2023-12-06T04:05:53.735 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:54.736 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:55.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:54 smithi017 conmon[82019]: audit 2023-12-06T04:05:53.218922+0000 mgr.smithi017.mljnlu (mgr.14180) 762 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:54 smithi017 conmon[82019]: cluster 2023-12-06T04:05:53.493016+0000 mgr.smithi017.mljnlu (mgr.14180) 763 : cluster [DBG] pgmap v515: 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-12-06T04:05:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:54 smithi169 conmon[87179]: audit 2023-12-06T04:05:53.218922+0000 mgr.smithi017.mljnlu (mgr.14180) 762 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:54 smithi169 conmon[87179]: cluster 2023-12 2023-12-06T04:05:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:54 smithi169 conmon[87179]: -06T04:05:53.493016+0000 mgr.smithi017.mljnlu (mgr.14180) 763 : cluster [DBG] pgmap v515: 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-12-06T04:05:56.645 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:05:56.645 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:05:57.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:56 smithi017 conmon[82019]: cluster 2023-12-06T04:05:55.493474+0000 mgr.smithi017.mljnlu (mgr.14180) 764 : 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-12-06T04:05:57.089 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:05:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:56 smithi169 conmon[87179]: cluster 2023-12-06T04:05:55.493474+0000 mgr.smithi017.mljnlu (mgr.14180) 764 : 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-12-06T04:05:58.091 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:05:58.121 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:57 smithi017 conmon[82019]: audit 2023-12-06T04:05:56.639766+0000 mgr.smithi017.mljnlu (mgr.14180) 765 : audit [DBG] 2023-12-06T04:05:58.121 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:57 smithi017 conmon[82019]: from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:57 smithi169 conmon[87179]: audit 2023-12-06T04:05:56.639766+0000 mgr.smithi017.mljnlu (mgr.14180) 765 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:05:59.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:05:58 smithi017 conmon[82019]: cluster 2023-12-06T04:05:57.494121+0000 mgr.smithi017.mljnlu (mgr.14180) 766 : 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-12-06T04:05:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:58 smithi169 conmon[87179]: cluster 2023-12-06T04:05:57.494121+0000 2023-12-06T04:05:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:05:58 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 766 : 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-12-06T04:06:00.046 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:00.047 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:00.539 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:00 smithi169 conmon[87179]: cluster 2023-12-06T04:05:59.495040+0000 mgr.smithi017.mljnlu (mgr.14180) 767 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:00 smithi169 conmon[87179]: audit 2023-12-06T04:06:00.041728+0000 mgr.smithi017.mljnlu (mgr.14180) 768 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:00 smithi017 conmon[82019]: cluster 2023-12-06T04:05:59.495040+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:06:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:00 smithi017 conmon[82019]: .14180) 767 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:00 smithi017 conmon[82019]: audit 2023-12-06T04:06:00.041728+0000 mgr.smithi017.mljnlu (mgr.14180) 768 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:01.540 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:03.158 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:02 smithi017 conmon[82019]: cluster 2023-12-06T04:06:01.495638+0000 mgr.smithi017.mljnlu (mgr.14180) 769 : 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-12-06T04:06:03.158 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:02 smithi017 conmon[82019]: 2023-12-06T04:06:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:02 smithi169 conmon[87179]: cluster 2023-12-06T04:06:01.495638+0000 mgr.smithi017.mljnlu (mgr.14180) 769 : cluster [DBG] 2023-12-06T04:06:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:02 smithi169 conmon[87179]: 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-12-06T04:06:03.599 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:03.599 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:04.101 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:05.102 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:04 smithi169 conmon[87179]: cluster 2023-12-06T04:06:03.496304+0000 mgr.smithi017.mljnlu (mgr.14180) 770 : cluster [DBG] 2023-12-06T04:06:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:04 smithi169 conmon[87179]: pgmap v520: 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-12-06T04:06:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:04 smithi169 conmon[87179]: audit 2023-12-06T04:06:03.594363+0000 mgr.smithi017.mljnlu (mgr.14180) 771 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:04 smithi017 conmon[82019]: cluster 2023-12-06T04:06:03.496304+0000 mgr.smithi017.mljnlu (mgr.14180) 770 : cluster [DBG] pgmap v520: 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-12-06T04:06:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:04 smithi017 conmon[82019]: audit 2023-12-06T04:06:03.594363+0000 mgr.smithi017.mljnlu (mgr.14180) 771 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:07.040 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:07.040 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:07.247 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:06 smithi017 conmon[82019]: cluster 2023-12-06T04:06:05.496786+0000 mgr.smithi017.mljnlu (mgr.14180) 772 : 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-12-06T04:06:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:06 smithi169 conmon[87179]: cluster 2023-12-06T04:06:05.496786+0000 mgr.smithi017.mljnlu (mgr.14180) 772 : 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-12-06T04:06:07.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:07 smithi169 conmon[87179]: audit 2023-12-06T04:06:07.035836+0000 mgr.smithi017.mljnlu (mgr.14180) 773 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:08.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:07 smithi017 conmon[82019]: audit 2023-12-06T04:06:07.035836+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:06:08.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:07 smithi017 conmon[82019]: 773 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:08.453 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:09.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:08 smithi017 conmon[82019]: cluster 2023-12-06T04:06:07.497437+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:06:09.193 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:08 smithi017 conmon[82019]: 14180) 774 : 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-12-06T04:06:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:08 smithi169 conmon[87179]: cluster 2023-12-06T04:06:07.497437+0000 mgr.smithi017.mljnlu (mgr.14180) 774 : 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-12-06T04:06:10.294 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:10.294 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:10.909 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:11.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:10 smithi017 conmon[82019]: cluster 2023-12-06T04:06:09.498064+0000 mgr.smithi017.mljnlu (mgr.14180) 775 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:10 smithi169 conmon[87179]: cluster 2023-12-06T04:06:09.498064+0000 mgr.smithi017.mljnlu (mgr.14180) 775 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:11.910 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:12.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:11 smithi169 conmon[87179]: audit 2023-12-06T04:06:10.289019+0000 mgr.smithi017.mljnlu (mgr.14180) 776 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:11 smithi017 conmon[82019]: audit 2023-12-06T04:06:10.289019+0000 mgr.smithi017.mljnlu (mgr.14180) 776 : audit 2023-12-06T04:06:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:11 smithi017 conmon[82019]: [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:12 smithi169 conmon[87179]: cluster 2023-12-06T04:06:11.498660+0000 mgr.smithi017.mljnlu (mgr.14180) 777 : 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-12-06T04:06:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:12 smithi017 conmon[82019]: cluster 2023-12-06T04:06:11.498660+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:06:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:12 smithi017 conmon[82019]: 777 : 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-12-06T04:06:13.760 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:13.761 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:14.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:14 smithi169 conmon[87179]: cluster 2023-12-06T04:06:13.499317+0000 mgr.smithi017.mljnlu (mgr.14180) 778 : cluster [DBG] pgmap v525: 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-12-06T04:06:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:14 smithi169 conmon[87179]: audit 2023-12-06T04:06:13 2023-12-06T04:06:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:14 smithi169 conmon[87179]: .755441+0000 mgr.smithi017.mljnlu (mgr.14180) 779 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:15.272 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:15.302 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:14 smithi017 conmon[82019]: cluster 2023-12-06T04:06:13.499317+0000 mgr.smithi017.mljnlu (mgr.14180) 778 : cluster [DBG] pgmap v525: 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-12-06T04:06:15.302 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:14 smithi017 conmon[82019]: audit 2023-12-06T04:06:13.755441+0000 mgr.smithi017.mljnlu (mgr.14180) 779 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:16 smithi017 conmon[82019]: cluster 2023-12-06T04:06:15.499826+0000 mgr.smithi017.mljnlu (mgr.14180) 780 : 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-12-06T04:06:17.119 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:17.119 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:16 smithi169 conmon[87179]: cluster 2023-12-06T04:06:15.499826+0000 mgr.smithi017.mljnlu (mgr.14180) 780 : 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-12-06T04:06:17.626 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:18.629 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:18 smithi169 conmon[87179]: audit 2023-12-06T04:06:17.114252+0000 mgr.smithi017.mljnlu (mgr.14180) 781 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:18 smithi169 conmon[87179]: cluster 2023-12-06T04:06:17.500451+0000 mgr.smithi017.mljnlu (mgr.14180) 782 : 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-12-06T04:06:19.270 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:18 smithi017 conmon[82019]: audit 2023-12-06T04:06:17.114252+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:06:19.270 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:18 smithi017 conmon[82019]: mgr.14180) 781 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:19.271 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:18 smithi017 conmon[82019]: cluster 2023-12-06T04:06:17.500451+0000 mgr.smithi017.mljnlu (mgr.14180) 782 : 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-12-06T04:06:20.507 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:20.507 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:20.981 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:20 smithi169 conmon[87179]: cluster 2023-12-06T04:06:19.501204+0000 mgr.smithi017.mljnlu (mgr.14180) 783 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:20 smithi017 conmon[82019]: cluster 2023-12-06T04:06:19.501204+0000 mgr.smithi017.mljnlu (mgr.14180) 783 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:21.982 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:21 smithi169 conmon[87179]: audit 2023-12-06T04:06:20.502483+0000 mgr.smithi017.mljnlu (mgr.14180) 784 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:22.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:21 smithi017 conmon[82019]: audit 2023-12-06T04:06:20.502483+0000 mgr.smithi017.mljnlu (mgr.14180) 784 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:22 smithi169 conmon[87179]: cluster 2023-12-06T04:06:21.501873+0000 mgr.smithi017.mljnlu (mgr.14180) 785 : 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-12-06T04:06:23.314 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:22 smithi017 conmon[82019]: cluster 2023-12-06T04:06:21.501873+0000 mgr.smithi017.mljnlu (mgr.14180) 785 : 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-12-06T04:06:23.924 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:23.924 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:24.329 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:24 smithi169 conmon[87179]: cluster 2023-12-06T04:06:23.502854+0000 mgr.smithi017.mljnlu (mgr.14180) 786 : cluster [DBG] pgmap v530: 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-12-06T04:06:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:24 smithi169 conmon[87179]: audit 2023-12-06T04:06:23 2023-12-06T04:06:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:24 smithi169 conmon[87179]: .919408+0000 mgr.smithi017.mljnlu (mgr.14180) 787 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:24 smithi017 conmon[82019]: cluster 2023-12-06T04:06:23.502854+0000 mgr.smithi017.mljnlu (mgr.14180) 786 : cluster [DBG] pgmap v530: 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-12-06T04:06:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:24 smithi017 conmon[82019]: audit 2023-12-06T04:06:23.919408+0000 mgr.smithi017.mljnlu (mgr.14180) 787 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:25.330 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:27.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:26 smithi017 conmon[82019]: cluster 2023-12-06T04:06:25.503562+0000 mgr.smithi017.mljnlu (mgr.14180) 788 : 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-12-06T04:06:27.151 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:27.151 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:26 smithi169 conmon[87179]: cluster 2023-12-06T04:06:25.503562+0000 mgr.smithi017.mljnlu (mgr.14180) 788 : 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-12-06T04:06:27.694 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:28.695 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:29.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:28 smithi017 conmon[82019]: audit 2023-12-06T04:06:27.147212+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:06:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:28 smithi017 conmon[82019]: 789 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:28 smithi017 conmon[82019]: cluster 2023-12-06T04:06:27.504231+0000 mgr.smithi017.mljnlu (mgr.14180) 790 : 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-12-06T04:06:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:28 smithi169 conmon[87179]: audit 2023-12-06T04:06:27.147212+0000 mgr.smithi017.mljnlu (mgr.14180) 789 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:28 smithi169 conmon[87179]: cluster 2023-12-06T04:06:27.504231+0000 mgr.smithi017.mljnlu (mgr.14180) 790 : 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-12-06T04:06:30.515 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:30.515 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:31.054 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:30 smithi169 conmon[87179]: cluster 2023-12-06T04:06:29.504870+0000 mgr.smithi017.mljnlu (mgr.14180) 791 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:30 smithi017 conmon[82019]: cluster 2023-12-06T04:06:29.504870+0000 mgr.smithi017.mljnlu (mgr.14180) 791 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:32.055 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:31 smithi169 conmon[87179]: audit 2023-12-06T04:06:30.510451+0000 mgr.smithi017.mljnlu (mgr.14180) 792 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:32.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:31 smithi017 conmon[82019]: audit 2023-12-06T04:06:30.510451+0000 mgr.smithi017.mljnlu (mgr.14180) 792 : audit 2023-12-06T04:06:32.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:31 smithi017 conmon[82019]: [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:32 smithi169 conmon[87179]: cluster 2023-12-06T04:06:31.505652+0000 mgr.smithi017.mljnlu (mgr.14180) 793 : 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-12-06T04:06:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:32 smithi017 conmon[82019]: cluster 2023-12-06T04:06:31.505652 2023-12-06T04:06:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:32 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 793 : 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-12-06T04:06:34.088 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:34.088 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:34.505 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:34 smithi169 conmon[87179]: cluster 2023-12-06T04:06:33.506302+0000 mgr.smithi017.mljnlu (mgr.14180) 794 : 2023-12-06T04:06:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:34 smithi169 conmon[87179]: cluster [DBG] pgmap v535: 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-12-06T04:06:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:34 smithi169 conmon[87179]: audit 2023-12-06T04:06:34.083351+0000 mgr.smithi017.mljnlu (mgr.14180) 795 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:34 smithi017 conmon[82019]: cluster 2023-12-06T04:06:33.506302+0000 mgr.smithi017.mljnlu (mgr.14180) 794 : cluster [DBG] pgmap v535: 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-12-06T04:06:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:34 smithi017 conmon[82019]: audit 2023-12-06T04:06:34.083351+0000 mgr.smithi017.mljnlu (mgr.14180) 795 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:35.507 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:36 smithi169 conmon[87179]: cluster 2023-12-06T04:06:35.506904+0000 mgr.smithi017.mljnlu (mgr.14180) 796 : cluster [DBG] 2023-12-06T04:06:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:36 smithi169 conmon[87179]: 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-12-06T04:06:37.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:36 smithi017 conmon[82019]: cluster 2023-12-06T04:06:35.506904 2023-12-06T04:06:37.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:36 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 796 : 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-12-06T04:06:37.361 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:37.361 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:37.756 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:38.757 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:38 smithi017 conmon[82019]: audit 2023-12-06T04:06:37.356769+0000 mgr.smithi017.mljnlu (mgr.14180) 797 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:39.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:38 smithi017 conmon[82019]: cluster 2023-12-06T04:06:37.507801+0000 mgr.smithi017.mljnlu (mgr.14180) 798 : 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-12-06T04:06:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:38 smithi169 conmon[87179]: audit 2023-12-06T04:06:37.356769+0000 mgr.smithi017.mljnlu (mgr.14180) 797 : audit [DBG] 2023-12-06T04:06:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:38 smithi169 conmon[87179]: from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:38 smithi169 conmon[87179]: cluster 2023-12-06T04:06:37.507801+0000 mgr.smithi017.mljnlu (mgr.14180) 798 : 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-12-06T04:06:40.622 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:40.622 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:41.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:40 smithi169 conmon[87179]: cluster 2023-12-06T04:06:39.508452+0000 mgr.smithi017.mljnlu (mgr.14180) 799 : cluster [DBG] 2023-12-06T04:06:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:40 smithi169 conmon[87179]: pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:40 smithi017 conmon[82019]: cluster 2023-12-06T04:06:39.508452+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:06:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:40 smithi017 conmon[82019]: .14180) 799 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:42.123 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:41 smithi169 conmon[87179]: audit 2023-12-06T04:06:40.617861+0000 mgr.smithi017.mljnlu (mgr.14180) 800 : audit [DBG] 2023-12-06T04:06:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:41 smithi169 conmon[87179]: from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:41 smithi017 conmon[82019]: audit 2023-12-06T04:06:40.617861+0000 mgr.smithi017.mljnlu (mgr.14180) 800 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:42 smithi169 conmon[87179]: cluster 2023-12-06T04:06:41.509119+0000 mgr.smithi017.mljnlu (mgr.14180) 801 : cluster [DBG] 2023-12-06T04:06:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:42 smithi169 conmon[87179]: 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-12-06T04:06:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:42 smithi017 conmon[82019]: cluster 2023-12-06T04:06:41.509119+0000 mgr.smithi017.mljnlu (mgr.14180) 801 : 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-12-06T04:06:44.175 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:44.175 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:44.582 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:44 smithi169 conmon[87179]: cluster 2023-12-06T04:06:43.509775+0000 mgr.smithi017.mljnlu (mgr.14180) 802 : cluster [DBG] pgmap v540: 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-12-06T04:06:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:44 smithi169 conmon[87179]: 2023-12-06T04:06:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:44 smithi017 conmon[82019]: cluster 2023-12-06T04:06:43.509775+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:06:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:44 smithi017 conmon[82019]: .14180) 802 : cluster [DBG] pgmap v540: 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-12-06T04:06:45.584 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:46 smithi017 conmon[82019]: audit 2023-12-06T04:06:44.169845 2023-12-06T04:06:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:46 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 803 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:46.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:46 smithi169 conmon[87179]: audit 2023-12-06T04:06:44.169845+0000 mgr.smithi017.mljnlu (mgr.14180) 803 : audit 2023-12-06T04:06:46.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:46 smithi169 conmon[87179]: [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:47.227 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:47 smithi017 conmon[82019]: cluster 2023-12-06T04:06:45.510547+0000 mgr.smithi017.mljnlu (mgr.14180) 804 : 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-12-06T04:06:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:47 smithi169 conmon[87179]: cluster 2023-12-06T04:06:45.510547+0000 mgr.smithi017.mljnlu (mgr.14180) 804 : cluster [DBG] 2023-12-06T04:06:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:47 smithi169 conmon[87179]: 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-12-06T04:06:47.646 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:47.646 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:48.131 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:49.132 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:49.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:49 smithi017 conmon[82019]: cluster 2023-12-06T04:06:47.511138+0000 mgr.smithi017.mljnlu (mgr.14180) 805 : 2023-12-06T04:06:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:49 smithi017 conmon[82019]: 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-12-06T04:06:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:49 smithi017 conmon[82019]: audit 2023-12-06T04:06:47.641727+0000 mgr.smithi017.mljnlu (mgr.14180) 806 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:49 smithi169 conmon[87179]: cluster 2023-12-06T04:06:47.511138+0000 mgr.smithi017.mljnlu (mgr.14180) 805 : cluster 2023-12-06T04:06:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:49 smithi169 conmon[87179]: [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-12-06T04:06:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:49 smithi169 conmon[87179]: audit 2023-12-06T04:06:47.641727+0000 mgr.smithi017.mljnlu (mgr.14180) 806 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:50.979 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:50.979 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:51 smithi017 conmon[82019]: cluster 2023-12-06T04:06:49.511756+0000 mgr.smithi017.mljnlu (mgr.14180) 807 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:51.488 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:51 smithi169 conmon[87179]: cluster 2023-12-06T04:06:49.511756+0000 mgr.smithi017.mljnlu (mgr.14180) 807 : cluster 2023-12-06T04:06:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:51 smithi169 conmon[87179]: [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:06:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:52 smithi017 conmon[82019]: audit 2023-12-06T04:06:50.974441+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:06:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:52 smithi017 conmon[82019]: 808 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:52.489 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:52 smithi169 conmon[87179]: audit 2023-12-06T04:06:50.974441+0000 mgr.smithi017.mljnlu (mgr.14180) 808 : audit 2023-12-06T04:06:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:52 smithi169 conmon[87179]: [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:53.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:53 smithi017 conmon[82019]: cluster 2023-12-06T04:06:51.512636+0000 mgr.smithi017.mljnlu 2023-12-06T04:06:53.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:53 smithi017 conmon[82019]: (mgr.14180) 809 : 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-12-06T04:06:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:53 smithi169 conmon[87179]: cluster 2023-12-06T04:06:51.512636+0000 mgr.smithi017.mljnlu (mgr.14180) 809 : cluster 2023-12-06T04:06:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:53 smithi169 conmon[87179]: [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-12-06T04:06:54.503 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:54.503 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:54.942 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:55.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:55 smithi017 conmon[82019]: cluster 2023-12-06T04:06:53.513495+0000 mgr.smithi017.mljnlu (mgr.14180) 810 : cluster [DBG] pgmap v545: 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-12-06T04:06:55.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:55 smithi169 conmon[87179]: cluster 2023-12-06T04:06:53.513495+0000 mgr.smithi017.mljnlu (mgr.14180) 810 : cluster [DBG] pgmap v545: 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-12-06T04:06:55.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:55 smithi169 conmon[87179]: 2023-12-06T04:06:55.942 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:56 smithi017 conmon[82019]: audit 2023-12-06T04:06:54 2023-12-06T04:06:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:56 smithi017 conmon[82019]: .498587+0000 mgr.smithi017.mljnlu (mgr.14180) 811 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:56.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:56 smithi169 conmon[87179]: audit 2023-12-06T04:06:54.498587+0000 mgr.smithi017.mljnlu (mgr.14180) 811 : audit [DBG] 2023-12-06T04:06:56.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:56 smithi169 conmon[87179]: from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:57 smithi017 conmon[82019]: cluster 2023-12-06T04:06:55.514132+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:06:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:57 smithi017 conmon[82019]: 14180) 812 : 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-12-06T04:06:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:57 smithi169 conmon[87179]: cluster 2023-12-06T04:06:55.514132+0000 mgr.smithi017.mljnlu (mgr.14180) 812 : cluster 2023-12-06T04:06:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:57 smithi169 conmon[87179]: [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-12-06T04:06:57.781 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:06:57.781 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:06:58.296 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:06:59.298 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:06:59.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:59 smithi017 conmon[82019]: cluster 2023-12-06T04:06:57.514704+0000 mgr.smithi017.mljnlu (mgr.14180) 813 : 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-12-06T04:06:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:06:59 smithi017 conmon[82019]: audit 2023-12-06T04:06:57.776870+0000 mgr.smithi017.mljnlu (mgr.14180) 814 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:06:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:59 smithi169 conmon[87179]: cluster 2023-12-06T04:06:57.514704+0000 mgr.smithi017.mljnlu (mgr.14180) 813 : cluster [DBG] 2023-12-06T04:06:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:59 smithi169 conmon[87179]: 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-12-06T04:06:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:06:59 smithi169 conmon[87179]: audit 2023-12-06T04:06:57.776870+0000 mgr.smithi017.mljnlu (mgr.14180) 814 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:01.272 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:01.272 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:01.304 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:01 smithi017 conmon[82019]: cluster 2023-12-06T04:06:59.515369+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:07:01.304 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:01 smithi017 conmon[82019]: 14180) 815 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:01 smithi169 conmon[87179]: cluster 2023-12-06T04:06:59.515369+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:07:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:01 smithi169 conmon[87179]: ) 815 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:01.764 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:02.766 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:03 smithi017 conmon[82019]: audit 2023-12-06T04:07:01.267589+0000 mgr.smithi017.mljnlu (mgr.14180) 816 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:03 smithi017 conmon[82019]: cluster 2023-12-06T04:07:01.515912+0000 mgr.smithi017.mljnlu (mgr.14180) 817 : 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-12-06T04:07:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:03 smithi169 conmon[87179]: audit 2023-12-06T04:07:01.267589+0000 mgr.smithi017.mljnlu (mgr.14180) 816 : 2023-12-06T04:07:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:03 smithi169 conmon[87179]: audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:03 smithi169 conmon[87179]: cluster 2023-12-06T04:07:01.515912+0000 mgr.smithi017.mljnlu (mgr.14180) 817 : 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-12-06T04:07:04.700 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:04.700 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:05.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:05.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:05 smithi017 conmon[82019]: cluster 2023-12-06T04:07:03.516823+0000 2023-12-06T04:07:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:05 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 818 : cluster [DBG] pgmap v550: 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-12-06T04:07:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:05 smithi169 conmon[87179]: cluster 2023-12-06T04:07:03.516823+0000 mgr.smithi017.mljnlu (mgr.14180) 818 : cluster [DBG] pgmap v550: 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-12-06T04:07:06.230 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:06.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:06 smithi017 conmon[82019]: audit 2023-12-06T04:07:04.694920+0000 mgr.smithi017.mljnlu 2023-12-06T04:07:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:06 smithi017 conmon[82019]: (mgr.14180) 819 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:06.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:06 smithi169 conmon[87179]: audit 2023-12-06T04:07:04.694920+0000 mgr.smithi017.mljnlu (mgr.14180) 819 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:07 smithi017 conmon[82019]: cluster 2023-12-06T04:07:05.517334+0000 mgr.smithi017.mljnlu (mgr.14180) 820 : 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-12-06T04:07:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:07 smithi169 conmon[87179]: cluster 2023-12-06T04:07:05.517334+0000 mgr.smithi017.mljnlu (mgr.14180) 820 : 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-12-06T04:07:08.115 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:08.115 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:59:26.852349Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xjozxi on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:08.594 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:09 smithi017 conmon[82019]: cluster 2023-12-06T04:07:07.517917+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:07:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:09 smithi017 conmon[82019]: ) 821 : 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-12-06T04:07:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:09 smithi017 conmon[82019]: audit 2023-12-06T04:07:08.110035+0000 mgr.smithi017.mljnlu (mgr.14180) 822 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:09 smithi169 conmon[87179]: cluster 2023-12-06T04:07:07.517917+0000 mgr.smithi017.mljnlu (mgr.14180) 821 : 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-12-06T04:07:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:09 smithi169 conmon[87179]: audit 2023-12-06T04:07:08.110035+0000 mgr.smithi017.mljnlu (mgr.14180) 822 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:09.595 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:11 smithi017 conmon[82019]: cluster 2023-12-06T04:07:09.518676+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:07:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:11 smithi017 conmon[82019]: 14180) 823 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:11 smithi017 conmon[82019]: audit 2023-12-06T04:07:10.899828+0000 mon.smithi017 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.iosija"}]: dispatch 2023-12-06T04:07:11.486 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:11.487 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:11 smithi169 conmon[87179]: cluster 2023-12-06T04:07:09.518676+0000 mgr.smithi017.mljnlu (mgr.14180) 823 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:11 smithi169 conmon[87179]: audit 2023-12-06T04:07:10.899828+0000 mon.smithi017 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.iosija"}]: dispatch 2023-12-06T04:07:12.046 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: cephadm 2023-12-06T04:07:10.899341+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:07:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: .14180) 824 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:07:12.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: cephadm 2023-12-06T04:0 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 7:10.899518+0000 mgr.smithi017.mljnlu (mgr.14180) 825 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: cephadm 2023-12-06T04:07:10.900400+0000 mgr.smithi017.mljnlu (mgr.14180) 826 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:12 smithi017 conmon[82019]: cephadm 2023-12-06T04:07:10.901828+0000 mgr.smithi017.mljnlu (mgr.14180) 827 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.bkgldh on smithi017 2023-12-06T04:07:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: cephadm 2023-12-06T04:07:10.899341+0000 mgr.smithi017.mljnlu (mgr.14180) 824 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:07:12.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: .io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: cephadm 2023-12-06T04:07:10.899518+0000 mgr.smithi017.mljnlu (mgr.14180) 825 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: cephadm 2023-12-06T04:07:10.900400+0000 mgr.smithi017.mljnlu (mgr.14180) 826 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:07:12.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:07:12.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:12 smithi169 conmon[87179]: cephadm 2023-12-06T04:07:10.901828+0000 mgr.smithi017.mljnlu (mgr.14180) 827 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.bkgldh on smithi017 2023-12-06T04:07:13.048 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:13.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:13 smithi017 conmon[82019]: audit 2023-12-06T04:07:11.482193+0000 mgr.smithi017.mljnlu (mgr.14180) 828 2023-12-06T04:07:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:13 smithi017 conmon[82019]: : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:13 smithi017 conmon[82019]: cluster 2023-12-06T04:07:11.519334+0000 mgr.smithi017.mljnlu (mgr.14180) 829 : 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-12-06T04:07:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:13 smithi169 conmon[87179]: audit 2023-12-06T04:07:11.482193+0000 mgr.smithi017.mljnlu (mgr.14180) 828 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:13 smithi169 conmon[87179]: cluster 2023-12-06T04:07:11. 2023-12-06T04:07:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:13 smithi169 conmon[87179]: 519334+0000 mgr.smithi017.mljnlu (mgr.14180) 829 : 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-12-06T04:07:14.893 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:14.893 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:15.293 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:15 smithi017 conmon[82019]: cluster 2023-12-06T04:07:13.520001+0000 mgr.smithi017.mljnlu (mgr.14180) 830 : cluster [DBG] pgmap v555: 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-12-06T04:07:15.295 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:15 smithi169 conmon[87179]: cluster 2023-12-06T04:07:13.520001+0000 mgr.smithi017.mljnlu (mgr.14180) 830 : cluster [DBG] pgmap v555: 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-12-06T04:07:16.296 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:16.328 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:16 smithi017 conmon[82019]: audit 2023-12-06T04:07:14.886547+0000 mgr.smithi017.mljnlu (mgr.14180) 831 : audit 2023-12-06T04:07:16.328 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:16 smithi017 conmon[82019]: [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:16.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:16 smithi169 conmon[87179]: audit 2023-12-06T04:07:14.886547+0000 mgr.smithi017.mljnlu (mgr.14180) 831 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:17.255 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:17 smithi017 conmon[82019]: cluster 2023-12-06T04:07:15.520690+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:07:17.255 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:17 smithi017 conmon[82019]: .14180) 832 : 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-12-06T04:07:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:17 smithi169 conmon[87179]: cluster 2023-12-06T04:07:15.520690+0000 mgr.smithi017.mljnlu (mgr.14180) 832 : 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-12-06T04:07:18.172 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:18.173 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:18.658 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:19 smithi169 conmon[87179]: cluster 2023-12-06T04:07:17.521286+0000 mgr.smithi017.mljnlu (mgr.14180) 833 : cluster 2023-12-06T04:07:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:19 smithi169 conmon[87179]: [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-12-06T04:07:19.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:19 smithi017 conmon[82019]: cluster 2023-12-06T04:07:17 2023-12-06T04:07:19.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:19 smithi017 conmon[82019]: .521286+0000 mgr.smithi017.mljnlu (mgr.14180) 833 : 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-12-06T04:07:19.659 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:20.444 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:20 smithi017 conmon[82019]: audit 2023-12-06T04:07:18.168174+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:07:20.444 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:20 smithi017 conmon[82019]: .14180) 834 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:20.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:20 smithi169 conmon[87179]: audit 2023-12-06T04:07:18.168174+0000 mgr.smithi017.mljnlu (mgr.14180) 834 : audit 2023-12-06T04:07:20.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:20 smithi169 conmon[87179]: [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:21.280 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:21 smithi017 conmon[82019]: cluster 2023-12-06T04:07:19.522250+0000 mgr.smithi017.mljnlu (mgr.14180) 835 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:21 smithi169 conmon[87179]: cluster 2023-12-06T04:07:19.522250+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:07:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:21 smithi169 conmon[87179]: 835 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:21.630 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:21.631 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:22.113 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:23.113 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:23 smithi169 conmon[87179]: cluster 2023-12-06T04:07:21.522828+0000 mgr.smithi017.mljnlu (mgr.14180) 836 : 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-12-06T04:07:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:23 smithi169 conmon[87179]: audit 2023-12-06T04:07:21.626324+0000 2023-12-06T04:07:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:23 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 837 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:23.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:23 smithi017 conmon[82019]: cluster 2023-12-06T04:07:21.522828+0000 2023-12-06T04:07:23.706 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:23 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 836 : 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-12-06T04:07:23.707 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:23 smithi017 conmon[82019]: audit 2023-12-06T04:07:21.626324+0000 mgr.smithi017.mljnlu (mgr.14180) 837 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:25.173 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:25.174 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:25.420 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:25 smithi017 conmon[82019]: cluster 2023-12-06T04:07:23.523544+0000 mgr.smithi017.mljnlu (mgr.14180) 838 : cluster [DBG] pgmap v560: 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-12-06T04:07:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:25 smithi169 conmon[87179]: cluster 2023-12-06T04:07:23.523544+0000 mgr.smithi017.mljnlu (mgr.14180) 838 : cluster [DBG] pgmap v560: 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-12-06T04:07:25.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:26.667 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:27 smithi169 conmon[87179]: audit 2023-12-06T04:07:25.168924+0000 mgr.smithi017.mljnlu (mgr.14180) 839 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:27 smithi169 conmon[87179]: cluster 2023-12-06T04:07:25.524171+0000 mgr.smithi017.mljnlu (mgr.14180) 840 : 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-12-06T04:07:27.528 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:27 smithi017 conmon[82019]: audit 2023-12-06T04:07:25. 2023-12-06T04:07:27.528 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:27 smithi017 conmon[82019]: 168924+0000 mgr.smithi017.mljnlu (mgr.14180) 839 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:27.528 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:27 smithi017 conmon[82019]: cluster 2023-12-06T04:07:25.524171+0000 mgr.smithi017.mljnlu (mgr.14180) 840 : 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-12-06T04:07:28.616 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:28.616 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:29.032 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:29 smithi017 conmon[82019]: cluster 2023-12-06T04:07:27.524725+0000 mgr.smithi017.mljnlu (mgr.14180) 841 : 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-12-06T04:07:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:29 smithi169 conmon[87179]: cluster 2023-12-06T04:07:27.524725+0000 mgr.smithi017.mljnlu (mgr.14180) 841 : 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-12-06T04:07:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:29 smithi169 conmon[87179]: 2023-12-06T04:07:30.033 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:30 smithi017 conmon[82019]: audit 2023-12-06T04:07:28.610824+0000 mgr.smithi017.mljnlu (mgr.14180) 842 : 2023-12-06T04:07:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:30 smithi017 conmon[82019]: audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:30 smithi169 conmon[87179]: audit 2023-12-06T04:07:28.610824+0000 mgr.smithi017.mljnlu (mgr.14180) 842 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:31.273 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:31 smithi017 conmon[82019]: cluster 2023-12-06T04:07:29.525381+0000 mgr.smithi017.mljnlu (mgr.14180) 843 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:31 smithi169 conmon[87179]: cluster 2023-12-06T04:07:29.525381+0000 mgr.smithi017.mljnlu (mgr.14180) 843 : cluster 2023-12-06T04:07:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:31 smithi169 conmon[87179]: [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:32.044 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:32.045 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:32.486 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:33.487 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:33.499 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:33 smithi169 conmon[87179]: cluster 2023-12-06T04:07:31.525954+0000 mgr.smithi017.mljnlu (mgr.14180) 844 : 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-12-06T04:07:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:33 smithi169 conmon[87179]: audit 2023-12-06T04:07:32.039441+0000 mgr.smithi017.mljnlu (mgr.14180) 845 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:33.519 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:33 smithi017 conmon[82019]: cluster 2023-12-06T04:07:31.525954+0000 mgr.smithi017.mljnlu (mgr.14180) 844 : 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-12-06T04:07:33.519 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:33 smithi017 conmon[82019]: audit 2023-12-06T04:07:32.039441+0000 mgr.smithi017.mljnlu (mgr.14180) 845 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:35.488 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:35.488 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:35 smithi169 conmon[87179]: cluster 2023-12-06T04:07:33.526914+0000 mgr.smithi017.mljnlu (mgr.14180) 846 : cluster [DBG] pgmap v565: 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-12-06T04:07:35.509 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:35 smithi017 conmon[82019]: cluster 2023-12-06T04:07:33.526914 2023-12-06T04:07:35.509 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:35 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 846 : cluster [DBG] pgmap v565: 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-12-06T04:07:35.940 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:36.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:36 smithi169 conmon[87179]: audit 2023-12-06T04:07:35.483181+0000 mgr.smithi017.mljnlu (mgr.14180) 847 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:36.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:36 smithi169 conmon[87179]: cluster 2023-12-06T04:07:35.527540+0000 2023-12-06T04:07:36.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:36 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 848 : 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-12-06T04:07:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:36 smithi017 conmon[82019]: audit 2023-12-06T04:07:35.483181+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:07:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:36 smithi017 conmon[82019]: ) 847 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:36.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:36 smithi017 conmon[82019]: cluster 2023-12-06T04:07:35.527540+0000 mgr.smithi017.mljnlu (mgr.14180) 848 : 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-12-06T04:07:36.941 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:38 smithi017 conmon[82019]: cluster 2023-12-06T04:07:37.528107+0000 2023-12-06T04:07:38.819 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:38 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 849 : 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-12-06T04:07:39.000 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:38 smithi169 conmon[87179]: cluster 2023-12-06T04:07:37.528107+0000 mgr.smithi017.mljnlu (mgr.14180) 849 : 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-12-06T04:07:39.004 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:39.004 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:39.489 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:40.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:39 smithi017 conmon[82019]: audit 2023-12-06T04:07:38.999700+0000 mgr.smithi017.mljnlu (mgr.14180) 850 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:39 smithi169 conmon[87179]: audit 2023-12-06T04:07:38.999700+0000 mgr.smithi017.mljnlu (mgr.14180) 850 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:40.490 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:40 smithi017 conmon[82019]: cluster 2023-12-06T04:07:39.528863+0000 mgr.smithi017.mljnlu 2023-12-06T04:07:41.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:40 smithi017 conmon[82019]: (mgr.14180) 851 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:40 smithi169 conmon[87179]: cluster 2023-12-06T04:07:39.528863+0000 mgr.smithi017.mljnlu (mgr.14180) 851 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:42.421 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:42.421 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:42.850 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:42 smithi169 conmon[87179]: cluster 2023-12-06T04:07:41.529608+0000 mgr.smithi017.mljnlu (mgr.14180) 852 : 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-12-06T04:07:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:42 smithi017 conmon[82019]: cluster 2023-12-06T04:07:41.529608+0000 mgr.smithi017.mljnlu (mgr.14180) 852 : 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-12-06T04:07:43.852 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:43 smithi169 conmon[87179]: audit 2023-12-06T04:07:42.416990+0000 mgr.smithi017.mljnlu (mgr.14180) 853 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:44.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:43 smithi169 conmon[87179]: 2023-12-06T04:07:44.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:43 smithi017 conmon[82019]: audit 2023-12-06T04:07:42.416990+0000 mgr.smithi017.mljnlu (mgr.14180) 853 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:43 smithi017 conmon[82019]: 2023-12-06T04:07:45.134 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:44 smithi017 conmon[82019]: cluster 2023-12-06T04:07:43. 2023-12-06T04:07:45.134 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:44 smithi017 conmon[82019]: 530568+0000 mgr.smithi017.mljnlu (mgr.14180) 854 : cluster [DBG] pgmap v570: 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-12-06T04:07:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:44 smithi169 conmon[87179]: cluster 2023-12-06T04:07:43.530568+0000 mgr.smithi017.mljnlu (mgr.14180) 854 : cluster [DBG] pgmap v570: 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-12-06T04:07:45.844 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:45.844 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:46.318 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:46 smithi169 conmon[87179]: cluster 2023-12-06T04:07:45.531081+0000 mgr.smithi017.mljnlu (mgr.14180) 855 : 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-12-06T04:07:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:46 smithi169 conmon[87179]: 2023-12-06T04:07:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:46 smithi169 conmon[87179]: audit 2023-12-06T04:07:45.839752+0000 mgr.smithi017.mljnlu (mgr.14180) 856 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:47.318 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:46 smithi017 conmon[82019]: cluster 2023-12-06T04:07:45.531081+0000 mgr.smithi017.mljnlu (mgr.14180) 855 : 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-12-06T04:07:47.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:46 smithi017 conmon[82019]: audit 2023-12-06T04:07:45.839752+0000 mgr.smithi017.mljnlu (mgr.14180) 856 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:48 smithi169 conmon[87179]: cluster 2023-12-06T04:07:47.531700+0000 mgr.smithi017.mljnlu (mgr.14180) 857 : 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-12-06T04:07:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:48 smithi169 conmon[87179]: 2023-12-06T04:07:49.287 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:49.287 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:49.316 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:48 smithi017 conmon[82019]: cluster 2023-12-06T04:07:47.531700+0000 mgr.smithi017.mljnlu 2023-12-06T04:07:49.316 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:48 smithi017 conmon[82019]: (mgr.14180) 857 : 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-12-06T04:07:49.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:50.784 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:50 smithi017 conmon[82019]: audit 2023-12-06T04:07:49.282661+0000 mgr.smithi017.mljnlu (mgr.14180) 858 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:51.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:50 smithi017 conmon[82019]: cluster 2023-12-06T04:07:49.532294+0000 mgr.smithi017.mljnlu (mgr.14180) 859 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:50 smithi169 conmon[87179]: audit 2023-12-06T04:07:49.282661+0000 mgr.smithi017.mljnlu (mgr.14180) 858 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:50 smithi169 conmon[87179]: 2023-12-06T04:07:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:50 smithi169 conmon[87179]: cluster 2023-12-06T04:07:49.532294+0000 mgr.smithi017.mljnlu (mgr.14180) 859 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:07:52.746 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:52.747 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:53.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:52 smithi017 conmon[82019]: cluster 2023-12-06T04:07:51.533194+0000 mgr.smithi017.mljnlu (mgr.14180) 860 : 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-12-06T04:07:53.236 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:52 smithi169 conmon[87179]: cluster 2023-12-06T04:07:51.533194+0000 mgr.smithi017.mljnlu (mgr.14180) 860 : 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-12-06T04:07:54.236 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:53 smithi169 conmon[87179]: audit 2023-12-06T04:07:52.741979+0000 mgr.smithi017.mljnlu (mgr.14180) 861 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:54.268 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:53 smithi017 conmon[82019]: audit 2023-12-06T04:07:52.741979+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:07:54.268 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:53 smithi017 conmon[82019]: 14180) 861 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:55.117 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:54 smithi017 conmon[82019]: cluster 2023-12-06T04:07:53.533870+0000 mgr.smithi017.mljnlu (mgr.14180) 862 : cluster [DBG] pgmap v575: 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-12-06T04:07:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:54 smithi169 conmon[87179]: cluster 2023-12-06T04:07:53.533870+0000 mgr.smithi017.mljnlu (mgr.14180) 862 : cluster [DBG] pgmap v575: 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-12-06T04:07:56.138 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:56.138 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:07:56.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:07:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:56 smithi169 conmon[87179]: cluster 2023-12-06T04:07:55.534377+0000 mgr.smithi017.mljnlu (mgr.14180) 863 : 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-12-06T04:07:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:56 smithi017 conmon[82019]: cluster 2023-12-06T04:07:55.534377+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:07:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:56 smithi017 conmon[82019]: 863 : 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-12-06T04:07:57.586 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:07:58.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:57 smithi017 conmon[82019]: audit 2023-12-06T04:07:56.133756+0000 mgr.smithi017.mljnlu (mgr.14180) 864 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:57 smithi169 conmon[87179]: audit 2023-12-06T04:07:56.133756+0000 mgr.smithi017.mljnlu (mgr.14180) 864 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:07:58.931 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:58 smithi017 conmon[82019]: cluster 2023-12-06T04:07:57.535256+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:07:58.931 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:07:58 smithi017 conmon[82019]: 14180) 865 : 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-12-06T04:07:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:07:58 smithi169 conmon[87179]: cluster 2023-12-06T04:07:57.535256+0000 mgr.smithi017.mljnlu (mgr.14180) 865 : 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-12-06T04:07:59.620 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:07:59.620 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:00.042 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:01.043 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:00 smithi169 conmon[87179]: cluster 2023-12-06T04:07:59.535942+0000 mgr.smithi017.mljnlu (mgr.14180) 866 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:00 smithi169 conmon[87179]: audit 2023-12-06T04:07:59.615296+0000 mgr.smithi017.mljnlu (mgr.14180) 867 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:00 smithi017 conmon[82019]: cluster 2023-12-06T04:07:59.535942+0000 mgr.smithi017.mljnlu (mgr.14180) 866 : cluster 2023-12-06T04:08:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:00 smithi017 conmon[82019]: [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:00 smithi017 conmon[82019]: audit 2023-12-06T04:07:59.615296+0000 mgr.smithi017.mljnlu (mgr.14180) 867 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:02.825 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:02.826 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:03.187 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:02 smithi017 conmon[82019]: cluster 2023-12-06T04:08:01.536593+0000 mgr.smithi017.mljnlu (mgr.14180) 868 : 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-12-06T04:08:03.193 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:03.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:02 smithi169 conmon[87179]: cluster 2023-12-06T04:08:01.536593+0000 mgr.smithi017.mljnlu (mgr.14180) 868 : 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-12-06T04:08:04.195 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:04.225 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:03 smithi017 conmon[82019]: audit 2023-12-06T04:08:02.820792+0000 mgr.smithi017.mljnlu (mgr.14180) 869 : 2023-12-06T04:08:04.225 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:03 smithi017 conmon[82019]: audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:03 smithi169 conmon[87179]: audit 2023-12-06T04:08:02.820792+0000 mgr.smithi017.mljnlu (mgr.14180) 869 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:04 smithi169 conmon[87179]: cluster 2023-12-06T04:08:03.537543+0000 mgr.smithi017.mljnlu (mgr.14180) 870 : cluster [DBG] pgmap v580: 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-12-06T04:08:05.253 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:04 smithi017 conmon[82019]: cluster 2023-12-06T04:08:03.537543+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:08:05.253 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:04 smithi017 conmon[82019]: ) 870 : cluster [DBG] pgmap v580: 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-12-06T04:08:06.292 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:06.292 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:06.658 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:07.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:06 smithi017 conmon[82019]: cluster 2023-12-06T04:08:05.538040+0000 mgr.smithi017.mljnlu (mgr.14180) 871 : 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-12-06T04:08:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:06 smithi169 conmon[87179]: cluster 2023-12-06T04:08:05.538040+0000 mgr.smithi017.mljnlu (mgr.14180) 871 : cluster [DBG] 2023-12-06T04:08:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:06 smithi169 conmon[87179]: 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-12-06T04:08:07.659 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:07 smithi017 conmon[82019]: audit 2023-12-06T04:08:06.287588+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:08:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:07 smithi017 conmon[82019]: mgr.14180) 872 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:07 smithi169 conmon[87179]: audit 2023-12-06T04:08:06.287588+0000 mgr.smithi017.mljnlu (mgr.14180) 872 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:09.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:08 smithi169 conmon[87179]: cluster 2023-12-06T04:08:07.538735+0000 mgr.smithi017.mljnlu (mgr.14180) 873 : 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-12-06T04:08:09.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:08 smithi017 conmon[82019]: cluster 2023-12-06T04:08:07.538735+0000 mgr.smithi017.mljnlu (mgr.14180) 873 : 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-12-06T04:08:09.362 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:09.362 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:09.809 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:10.810 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:11.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:10 smithi169 conmon[87179]: audit 2023-12-06T04:08:09.357503+0000 mgr.smithi017.mljnlu (mgr.14180) 874 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:11.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:10 smithi169 conmon[87179]: cluster 2023-12-06T04:08:09.539396+0000 mgr.smithi017.mljnlu (mgr.14180) 875 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:10 smithi017 conmon[82019]: audit 2023-12-06T04:08:09.357503+0000 mgr.smithi017.mljnlu (mgr.14180) 874 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:10 smithi017 conmon[82019]: cluster 2023-12-06T04:08:09.539396+0000 mgr.smithi017.mljnlu (mgr.14180) 875 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:12.596 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:12.596 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:12.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:12 smithi169 conmon[87179]: cluster 2023-12-06T04:08:11.539985+0000 mgr.smithi017.mljnlu (mgr.14180) 876 : 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-12-06T04:08:13.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:12 smithi017 conmon[82019]: cluster 2023-12-06T04:08:11.539985+0000 mgr.smithi017.mljnlu (mgr.14180) 876 : 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-12-06T04:08:13.974 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:13 smithi169 conmon[87179]: audit 2023-12-06T04:08:12.591159+0000 mgr.smithi017.mljnlu (mgr.14180) 877 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:13 smithi017 conmon[82019]: audit 2023-12-06T04:08:12.591159+0000 mgr.smithi017.mljnlu (mgr.14180) 877 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:14 smithi169 conmon[87179]: cluster 2023-12-06T04:08:13.540831+0000 mgr.smithi017.mljnlu (mgr.14180) 878 : cluster [DBG] pgmap v585: 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-12-06T04:08:15.276 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:14 smithi017 conmon[82019]: cluster 2023-12-06T04:08:13.540831+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:08:15.276 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:14 smithi017 conmon[82019]: mgr.14180) 878 : cluster [DBG] pgmap v585: 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-12-06T04:08:15.989 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:15.990 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:16.326 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:16 smithi169 conmon[87179]: cluster 2023-12-06T04:08:15.541370+0000 mgr.smithi017.mljnlu (mgr.14180) 879 : 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-12-06T04:08:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:16 smithi169 conmon[87179]: audit 2023-12-06T04:08:15.984955+0000 mgr.smithi017.mljnlu (mgr.14180) 880 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:17.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:16 smithi017 conmon[82019]: cluster 2023-12-06T04:08:15.541370+0000 mgr.smithi017.mljnlu (mgr.14180) 879 : 2023-12-06T04:08:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:16 smithi017 conmon[82019]: 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-12-06T04:08:17.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:16 smithi017 conmon[82019]: audit 2023-12-06T04:08:15.984955+0000 mgr.smithi017.mljnlu (mgr.14180) 880 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:17.327 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:18 smithi017 conmon[82019]: cluster 2023-12-06T04:08:17 2023-12-06T04:08:19.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:18 smithi017 conmon[82019]: .541966+0000 mgr.smithi017.mljnlu (mgr.14180) 881 : 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-12-06T04:08:19.159 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:19.159 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:18 smithi169 conmon[87179]: cluster 2023-12-06T04:08:17.541966+0000 mgr.smithi017.mljnlu (mgr.14180) 881 : cluster [DBG] 2023-12-06T04:08:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:18 smithi169 conmon[87179]: 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-12-06T04:08:19.486 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:20.487 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:21.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:20 smithi017 conmon[82019]: audit 2023-12-06T04:08:19.155010+0000 mgr.smithi017.mljnlu (mgr.14180) 882 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:21.236 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:20 smithi017 conmon[82019]: cluster 2023-12-06T04:08:19.542667+0000 mgr.smithi017.mljnlu (mgr.14180) 883 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:20 smithi169 conmon[87179]: audit 2023-12-06T04:08:19.155010+0000 mgr.smithi017.mljnlu (mgr.14180) 882 : audit 2023-12-06T04:08:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:20 smithi169 conmon[87179]: [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:21.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:20 smithi169 conmon[87179]: cluster 2023-12-06T04:08:19.542667+0000 mgr.smithi017.mljnlu (mgr.14180) 883 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:22.275 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:22.276 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:22.750 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:22 smithi017 conmon[82019]: cluster 2023-12-06T04:08:21.543440+0000 mgr.smithi017.mljnlu (mgr.14180) 884 : 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-12-06T04:08:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:22 smithi169 conmon[87179]: cluster 2023-12-06T04:08:21.543440+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:08:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:22 smithi169 conmon[87179]: 14180) 884 : 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-12-06T04:08:23.752 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:24.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:23 smithi017 conmon[82019]: audit 2023-12-06T04:08:22.271337+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:08:24.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:23 smithi017 conmon[82019]: ) 885 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:23 smithi169 conmon[87179]: audit 2023-12-06T04:08:22.271337+0000 mgr.smithi017.mljnlu (mgr.14180) 885 : audit 2023-12-06T04:08:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:23 smithi169 conmon[87179]: [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:24.918 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:24 smithi017 conmon[82019]: cluster 2023-12-06T04:08:23.544292+0000 mgr.smithi017.mljnlu (mgr.14180) 886 : cluster [DBG] pgmap v590: 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-12-06T04:08:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:24 smithi169 conmon[87179]: cluster 2023-12-06T04:08:23.544292+0000 mgr.smithi017.mljnlu (mgr.14180) 886 : cluster 2023-12-06T04:08:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:24 smithi169 conmon[87179]: [DBG] pgmap v590: 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-12-06T04:08:25.481 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:25.481 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:25.916 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:26.917 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:26 smithi169 conmon[87179]: audit 2023-12-06T04:08:25.476135+0000 mgr.smithi017.mljnlu (mgr.14180) 887 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:26 smithi169 conmon[87179]: cluster 2023-12-06T 2023-12-06T04:08:27.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:26 smithi169 conmon[87179]: 04:08:25.544796+0000 mgr.smithi017.mljnlu (mgr.14180) 888 : 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-12-06T04:08:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:26 smithi017 conmon[82019]: audit 2023-12-06T04:08:25.476135+0000 mgr.smithi017.mljnlu (mgr.14180) 887 : audit 2023-12-06T04:08:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:26 smithi017 conmon[82019]: [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:26 smithi017 conmon[82019]: cluster 2023-12-06T04:08:25.544796+0000 mgr.smithi017.mljnlu (mgr.14180) 888 : 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-12-06T04:08:28.766 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:28.766 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:29.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:28 smithi017 conmon[82019]: cluster 2023-12-06T04:08:27.545412+0000 2023-12-06T04:08:29.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:28 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 889 : 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-12-06T04:08:29.181 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:28 smithi169 conmon[87179]: cluster 2023-12-06T04:08:27.545412+0000 mgr.smithi017.mljnlu (mgr.14180) 889 : 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-12-06T04:08:30.182 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:30.214 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:29 smithi017 conmon[82019]: audit 2023-12-06T04:08:28.761536+0000 mgr.smithi017.mljnlu (mgr.14180) 890 : audit [DBG] 2023-12-06T04:08:30.214 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:29 smithi017 conmon[82019]: from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:29 smithi169 conmon[87179]: audit 2023-12-06T04:08:28.761536+0000 mgr.smithi017.mljnlu (mgr.14180) 890 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:30 smithi017 conmon[82019]: cluster 2023-12-06T04:08:29.546048+0000 2023-12-06T04:08:31.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:30 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 891 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:31.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:30 smithi169 conmon[87179]: cluster 2023-12-06T04:08:29.546048+0000 mgr.smithi017.mljnlu (mgr.14180) 891 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:31.994 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:31.995 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:32.432 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:32 smithi169 conmon[87179]: cluster 2023-12-06T04:08:31.546599+0000 mgr.smithi017.mljnlu (mgr.14180) 892 : 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-12-06T04:08:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:32 smithi169 conmon[87179]: audit 2023-12-06T04:08:31.990017 2023-12-06T04:08:33.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:32 smithi169 conmon[87179]: +0000 mgr.smithi017.mljnlu (mgr.14180) 893 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:33.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:32 smithi017 conmon[82019]: cluster 2023-12-06T04:08:31.546599+0000 mgr.smithi017.mljnlu (mgr.14180) 892 : 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-12-06T04:08:33.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:32 smithi017 conmon[82019]: audit 2023-12-06T04:08:31.990017+0000 mgr.smithi017.mljnlu (mgr.14180) 893 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:33.434 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:35.228 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:35.229 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:34 smithi169 conmon[87179]: cluster 2023-12-06T04:08:33.547287+0000 mgr.smithi017.mljnlu (mgr.14180) 894 : cluster [DBG] 2023-12-06T04:08:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:34 smithi169 conmon[87179]: pgmap v595: 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-12-06T04:08:35.262 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:34 smithi017 conmon[82019]: cluster 2023-12-06T04:08:33.547287+0000 mgr.smithi017.mljnlu (mgr.14180) 894 : cluster [DBG] pgmap v595: 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-12-06T04:08:35.785 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:36.786 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:36 smithi017 conmon[82019]: audit 2023-12-06T04:08:35.224118+0000 mgr.smithi017.mljnlu (mgr.14180) 895 : 2023-12-06T04:08:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:36 smithi017 conmon[82019]: audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:37.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:36 smithi017 conmon[82019]: cluster 2023-12-06T04:08:35.548032+0000 mgr.smithi017.mljnlu (mgr.14180) 896 : 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-12-06T04:08:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:36 smithi169 conmon[87179]: audit 2023-12-06T04:08:35.224118+0000 mgr.smithi017.mljnlu (mgr.14180) 895 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:36 smithi169 conmon[87179]: cluster 2023-12-06T04:08:35.548032+0000 mgr.smithi017.mljnlu (mgr.14180) 896 : 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-12-06T04:08:38.511 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:38.511 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:38.950 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:38 smithi169 conmon[87179]: cluster 2023-12-06T04:08:37.548583+0000 mgr.smithi017.mljnlu (mgr.14180) 897 : 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-12-06T04:08:39.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:38 smithi017 conmon[82019]: cluster 2023-12-06T04:08:37.548583+0000 mgr.smithi017.mljnlu (mgr.14180) 897 : 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-12-06T04:08:39.951 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:39 smithi169 conmon[87179]: audit 2023-12-06T04:08:38.505965+0000 mgr.smithi017.mljnlu (mgr.14180) 898 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:40.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:39 smithi017 conmon[82019]: audit 2023-12-06T04:08:38.505965+0000 mgr.smithi017.mljnlu (mgr.14180) 898 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:40 smithi169 conmon[87179]: cluster 2023-12-06T04:08:39.549350+0000 mgr.smithi017.mljnlu (mgr.14180) 899 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:41.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:40 smithi017 conmon[82019]: cluster 2023-12-06T04:08:39.549350+0000 2023-12-06T04:08:41.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:40 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 899 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:41.767 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:41.767 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:42.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:43.214 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:43.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:42 smithi017 conmon[82019]: cluster 2023-12-06T04:08:41.549942+0000 mgr.smithi017.mljnlu (mgr.14180) 900 : 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-12-06T04:08:43.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:42 smithi017 conmon[82019]: audit 2023-12-06T04:08:41.762555+0000 mgr.smithi017.mljnlu (mgr.14180) 901 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:42 smithi169 conmon[87179]: cluster 2023-12-06T04:08:41.549942+0000 mgr.smithi017.mljnlu (mgr.14180) 900 : 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-12-06T04:08:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:42 smithi169 conmon[87179]: audit 2023-12-06T04:08:41.762555+0000 2023-12-06T04:08:43.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:42 smithi169 conmon[87179]: mgr.smithi017.mljnlu (mgr.14180) 901 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:44.960 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:44.960 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:44 smithi169 conmon[87179]: cluster 2023-12-06T04:08:43.550633+0000 mgr.smithi017.mljnlu (mgr.14180) 902 : cluster [DBG] pgmap v600: 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-12-06T04:08:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:44 smithi017 conmon[82019]: cluster 2023-12-06T04:08:43.550633+0000 mgr.smithi017.mljnlu (mgr.14180) 902 : cluster [DBG] pgmap v600: 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-12-06T04:08:45.377 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:45 smithi169 conmon[87179]: audit 2023-12-06T04:08:44.955196+0000 mgr.smithi017.mljnlu (mgr.14180) 903 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:46.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:45 smithi017 conmon[82019]: audit 2023-12-06T04:08:44.955196+0000 mgr.smithi017.mljnlu (mgr.14180) 903 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:46.377 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:46 smithi169 conmon[87179]: cluster 2023-12-06T04:08:45.551135+0000 mgr.smithi017.mljnlu (mgr.14180) 904 : 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-12-06T04:08:47.276 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:46 smithi017 conmon[82019]: cluster 2023-12-06T04:08:45.551135+0000 mgr.smithi017.mljnlu (mgr.14180) 904 : 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-12-06T04:08:48.095 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:48.096 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:48.527 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:48 smithi169 conmon[87179]: cluster 2023-12-06T04:08:47.551677+0000 mgr.smithi017.mljnlu (mgr.14180) 905 : 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-12-06T04:08:49.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:48 smithi169 conmon[87179]: 2023-12-06T04:08:49.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:48 smithi169 conmon[87179]: audit 2023-12-06T04:08:48.090866+0000 mgr.smithi017.mljnlu (mgr.14180) 906 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:49.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:48 smithi017 conmon[82019]: cluster 2023-12-06T04:08:47.551677+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:08:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:48 smithi017 conmon[82019]: 905 : 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-12-06T04:08:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:48 smithi017 conmon[82019]: audit 2023-12-06T04:08:48.090866+0000 mgr.smithi017.mljnlu (mgr.14180) 906 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:49.527 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:51.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:50 smithi169 conmon[87179]: cluster 2023-12-06T04:08:49.552444+0000 mgr.smithi017.mljnlu (mgr.14180) 907 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:50 smithi017 conmon[82019]: cluster 2023-12-06T04:08:49.552444+0000 mgr.smithi017.mljnlu (mgr.14180) 907 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:08:51.364 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:51.364 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:51.786 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:52.787 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:53.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:52 smithi017 conmon[82019]: audit 2023-12-06T04:08:51.359628+0000 mgr.smithi017.mljnlu (mgr.14180) 908 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:53.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:52 smithi017 conmon[82019]: cluster 2023-12-06T04:08:51.553049+0000 mgr.smithi017.mljnlu (mgr.14180) 909 : 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-12-06T04:08:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:52 smithi169 conmon[87179]: audit 2023-12-06T04:08:51.359628+0000 mgr.smithi017.mljnlu (mgr.14180) 908 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:52 smithi169 conmon[87179]: cluster 2023-12-06T04:08:53.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:52 smithi169 conmon[87179]: 2023-12-06T04:08:51.553049+0000 mgr.smithi017.mljnlu (mgr.14180) 909 : 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-12-06T04:08:54.616 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:54.616 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:55.040 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:54 smithi169 conmon[87179]: cluster 2023-12-06T04:08:53.553676+0000 mgr.smithi017.mljnlu (mgr.14180) 910 : cluster [DBG] pgmap v605: 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-12-06T04:08:55.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:54 smithi017 conmon[82019]: cluster 2023-12-06T04:08:53.553676+0000 mgr.smithi017.mljnlu (mgr.14180) 910 : cluster [DBG] pgmap v605: 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-12-06T04:08:56.040 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:55 smithi169 conmon[87179]: audit 2023-12-06T04:08:54.611672+0000 mgr.smithi017.mljnlu (mgr.14180) 911 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:55 smithi017 conmon[82019]: audit 2023-12-06T04:08:54.611672+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:08:56.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:55 smithi017 conmon[82019]: .14180) 911 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:56 smithi169 conmon[87179]: cluster 2023-12-06T04:08:55.554295+0000 mgr.smithi017.mljnlu (mgr.14180) 912 : 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-12-06T04:08:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:56 smithi017 conmon[82019]: cluster 2023-12-06T04:08:55.554295+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:08:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:56 smithi017 conmon[82019]: mgr.14180) 912 : 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-12-06T04:08:57.866 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:08:57.866 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:08:58.306 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:08:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:58 smithi169 conmon[87179]: cluster 2023-12-06T04:08:57.554834+0000 mgr.smithi017.mljnlu (mgr.14180) 913 : 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-12-06T04:08:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:58 smithi169 conmon[87179]: audit 2023-12-06T04:08:59.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:08:58 smithi169 conmon[87179]: 2023-12-06T04:08:57.861901+0000 mgr.smithi017.mljnlu (mgr.14180) 914 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:08:59.308 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:08:59.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:58 smithi017 conmon[82019]: cluster 2023-12-06T04:08:57.554834+0000 mgr.smithi017.mljnlu (mgr.14180) 913 : 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-12-06T04:08:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:08:58 smithi017 conmon[82019]: audit 2023-12-06T04:08:57.861901+0000 mgr.smithi017.mljnlu (mgr.14180) 914 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:01.117 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:01.117 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:01.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:00 smithi169 conmon[87179]: cluster 2023-12-06T04:08:59.555705+0000 mgr.smithi017.mljnlu (mgr.14180) 915 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:01.300 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:00 smithi017 conmon[82019]: cluster 2023-12-06T04:08:59.555705+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:09:01.300 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:00 smithi017 conmon[82019]: .14180) 915 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:01.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:02 smithi017 conmon[82019]: audit 2023-12-06T04:09:01.112671+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:09:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:02 smithi017 conmon[82019]: 14180) 916 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:02.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:02 smithi169 conmon[87179]: audit 2023-12-06T04:09:01.112671+0000 mgr.smithi017.mljnlu (mgr.14180) 916 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:02.557 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:03 smithi017 conmon[82019]: cluster 2023-12-06T04:09:01. 2023-12-06T04:09:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:03 smithi017 conmon[82019]: 556291+0000 mgr.smithi017.mljnlu (mgr.14180) 917 : 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-12-06T04:09:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:03 smithi169 conmon[87179]: cluster 2023-12-06T04:09:01.556291+0000 mgr.smithi017.mljnlu (mgr.14180) 917 : 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-12-06T04:09:04.356 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:04.356 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:04.809 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:05.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:05 smithi017 conmon[82019]: cluster 2023-12-06T04: 2023-12-06T04:09:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:05 smithi017 conmon[82019]: 09:03.556921+0000 mgr.smithi017.mljnlu (mgr.14180) 918 : cluster [DBG] pgmap v610: 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-12-06T04:09:05.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:05 smithi169 conmon[87179]: cluster 2023-12-06T04:09:03.556921+0000 mgr.smithi017.mljnlu (mgr.14180) 918 : cluster [DBG] pgmap v610: 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-12-06T04:09:05.811 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:06.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:06 smithi017 conmon[82019]: audit 2023-12-06T04:09:04.351359+0000 2023-12-06T04:09:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:06 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 919 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:06.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:06 smithi169 conmon[87179]: audit 2023-12-06T04:09:04.351359+0000 mgr.smithi017.mljnlu (mgr.14180) 919 : audit 2023-12-06T04:09:06.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:06 smithi169 conmon[87179]: [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:07.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:07 smithi017 conmon[82019]: cluster 2023-12-06T04:09:05.557678+0000 mgr.smithi017.mljnlu (mgr.14180) 920 : cluster [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-12-06T04:09:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:07 smithi169 conmon[87179]: cluster 2023-12-06T04:09:05.557678+0000 mgr.smithi017.mljnlu (mgr.14180) 920 : cluster [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-12-06T04:09:07.506 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:07.506 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:07.959 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:08.960 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:09.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:09 smithi017 conmon[82019]: audit 2023-12-06T04:09:07.501950+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:09:09.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:09 smithi017 conmon[82019]: 14180) 921 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:09 smithi017 conmon[82019]: cluster 2023-12-06T04:09:07.558321+0000 mgr.smithi017.mljnlu (mgr.14180) 922 : 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-12-06T04:09:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:09 smithi169 conmon[87179]: audit 2023-12-06T04:09:07.501950+0000 mgr.smithi017.mljnlu (mgr.14180) 921 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:09 smithi169 conmon[87179]: cluster 2023-12-06T04:09:07.558321+0000 mgr.smithi017.mljnlu (mgr.14180) 922 : 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-12-06T04:09:10.759 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:10.759 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:11.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:11 smithi017 conmon[82019]: cluster 2023-12-06T04:09:09.558936+0000 mgr.smithi017.mljnlu (mgr.14180) 923 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:11.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:11 smithi169 conmon[87179]: cluster 2023-12-06T04:09:09.558936+0000 mgr.smithi017.mljnlu (mgr.14180) 923 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:12.123 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:12.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:12 smithi017 conmon[82019]: audit 2023-12-06T04:09:10.754565+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:09:12.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:12 smithi017 conmon[82019]: 924 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:12 smithi169 conmon[87179]: audit 2023-12-06T04:09:10.754565+0000 mgr.smithi017.mljnlu (mgr.14180) 924 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:12 smithi169 conmon[87179]: 2023-12-06T04:09:13.294 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:13 smithi017 conmon[82019]: cluster 2023-12-06T04:09:11.559624+0000 mgr.smithi017.mljnlu (mgr.14180) 925 : 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-12-06T04:09:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:13 smithi169 conmon[87179]: cluster 2023-12-06T04:09:11.559624+0000 mgr.smithi017.mljnlu (mgr.14180) 925 : 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-12-06T04:09:13.963 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:13.963 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:14.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:15 smithi017 conmon[82019]: cluster 2023-12-06T04:09:13.560351+0000 mgr.smithi017.mljnlu (mgr.14180) 926 : cluster [DBG] pgmap v615: 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-12-06T04:09:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:15 smithi017 conmon[82019]: audit 2023-12-06T04:09:13.959228+0000 mgr.smithi017.mljnlu (mgr.14180) 927 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:15.385 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:15 smithi169 conmon[87179]: cluster 2023-12-06T04:09:13.560351+0000 mgr.smithi017.mljnlu (mgr.14180) 926 : cluster [DBG] 2023-12-06T04:09:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:15 smithi169 conmon[87179]: pgmap v615: 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-12-06T04:09:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:15 smithi169 conmon[87179]: audit 2023-12-06T04:09:13.959228+0000 mgr.smithi017.mljnlu (mgr.14180) 927 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:17 smithi017 conmon[82019]: cluster 2023-12-06T04:09:15.560943+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:09:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:17 smithi017 conmon[82019]: .14180) 928 : 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-12-06T04:09:17.195 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:17.195 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:17 smithi169 conmon[87179]: cluster 2023-12-06T04:09:15.560943+0000 mgr.smithi017.mljnlu (mgr.14180) 928 : 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-12-06T04:09:17.538 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:18.539 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:19 smithi017 conmon[82019]: audit 2023-12-06T04:09:17. 2023-12-06T04:09:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:19 smithi017 conmon[82019]: 190722+0000 mgr.smithi017.mljnlu (mgr.14180) 929 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:19 smithi017 conmon[82019]: cluster 2023-12-06T04:09:17.561523+0000 mgr.smithi017.mljnlu (mgr.14180) 930 : 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-12-06T04:09:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:19 smithi169 conmon[87179]: audit 2023-12-06T04:09:17.190722+0000 mgr.smithi017.mljnlu (mgr.14180) 929 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:19 smithi169 conmon[87179]: cluster 2023-12-06T04:09:17.561523+0000 mgr.smithi017.mljnlu (mgr.14180) 930 : 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-12-06T04:09:20.336 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:20.336 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:20.797 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:21.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:21 smithi017 conmon[82019]: cluster 2023-12-06T04:09:19.562210+0000 mgr.smithi017.mljnlu (mgr.14180) 931 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:21 smithi169 conmon[87179]: cluster 2023-12-06T04:09:19.562210+0000 mgr.smithi017.mljnlu (mgr.14180) 931 : cluster 2023-12-06T04:09:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:21 smithi169 conmon[87179]: [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:21.798 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:22.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:22 smithi017 conmon[82019]: audit 2023-12-06T04:09:20.331172+0000 mgr.smithi017.mljnlu 2023-12-06T04:09:22.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:22 smithi017 conmon[82019]: (mgr.14180) 932 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:22 smithi169 conmon[87179]: audit 2023-12-06T04:09:20.331172+0000 mgr.smithi017.mljnlu (mgr.14180) 932 : audit [DBG] 2023-12-06T04:09:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:22 smithi169 conmon[87179]: from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:23.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:23 smithi017 conmon[82019]: cluster 2023-12-06T04:09:21.562912+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:09:23.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:23 smithi017 conmon[82019]: mgr.14180) 933 : 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-12-06T04:09:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:23 smithi169 conmon[87179]: cluster 2023-12-06T04:09:21.562912+0000 mgr.smithi017.mljnlu (mgr.14180) 933 : 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-12-06T04:09:23.598 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:23.599 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:23.958 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:24.960 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:25 smithi017 conmon[82019]: cluster 2023-12-06T04:09:23.563601+0000 mgr.smithi017.mljnlu (mgr.14180) 934 : cluster [DBG] pgmap v620: 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-12-06T04:09:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:25 smithi017 conmon[82019]: audit 2023-12-06T04:09:23.594250+0000 mgr.smithi017.mljnlu (mgr.14180) 935 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:25 smithi169 conmon[87179]: cluster 2023-12-06T04:09:23.563601+0000 mgr.smithi017.mljnlu (mgr.14180) 934 : cluster [DBG] pgmap v620: 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-12-06T04:09:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:25 smithi169 conmon[87179]: audit 2023-12-06T04:09:23.594250+0000 mgr.smithi017.mljnlu (mgr.14180) 935 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:26.767 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:26.767 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:27.222 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:27.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:27 smithi017 conmon[82019]: cluster 2023-12-06T04:09:25.564110+0000 mgr.smithi017.mljnlu (mgr.14180) 936 : 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-12-06T04:09:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:27 smithi169 conmon[87179]: cluster 2023-12-06T04:09:25.564110+0000 mgr.smithi017.mljnlu (mgr.14180) 936 : 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-12-06T04:09:28.222 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:28.253 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:28 smithi017 conmon[82019]: audit 2023-12-06T04:09:26.762406+0000 mgr.smithi017.mljnlu (mgr.14180) 937 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:28 smithi169 conmon[87179]: audit 2023-12-06T04:09:26.762406+0000 mgr.smithi017.mljnlu (mgr.14180) 937 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:29.315 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:29 smithi017 conmon[82019]: cluster 2023-12-06T04:09:27.564643+0000 mgr.smithi017.mljnlu (mgr.14180) 938 : cluster [DBG] 2023-12-06T04:09:29.315 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:29 smithi017 conmon[82019]: 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-12-06T04:09:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:29 smithi169 conmon[87179]: cluster 2023-12-06T04:09:27.564643+0000 mgr.smithi017.mljnlu (mgr.14180) 938 : 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-12-06T04:09:29.907 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:29.907 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:30.274 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:31.274 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:31 smithi017 conmon[82019]: cluster 2023-12-06T04:09:29.565336+0000 mgr.smithi017.mljnlu (mgr.14180) 939 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:31.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:31 smithi017 conmon[82019]: audit 2023-12-06T04:09:29.902486+0000 mgr.smithi017.mljnlu (mgr.14180) 940 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:31 smithi169 conmon[87179]: cluster 2023-12-06T04:09:29.565336+0000 mgr.smithi017.mljnlu (mgr.14180) 939 : cluster [DBG] 2023-12-06T04:09:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:31 smithi169 conmon[87179]: pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:31 smithi169 conmon[87179]: audit 2023-12-06T04:09:29.902486+0000 mgr.smithi017.mljnlu (mgr.14180) 940 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:33.095 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:33.095 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:33.436 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:33 smithi017 conmon[82019]: cluster 2023-12-06T04:09:31.565947 2023-12-06T04:09:33.436 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:33 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 941 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:33.437 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:33 smithi169 conmon[87179]: cluster 2023-12-06T04:09:31.565947+0000 mgr.smithi017.mljnlu (mgr.14180) 941 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:34.438 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:34.468 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:34 smithi017 conmon[82019]: audit 2023-12-06T04:09:33.089973+0000 mgr.smithi017.mljnlu 2023-12-06T04:09:34.468 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:34 smithi017 conmon[82019]: (mgr.14180) 942 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:34 smithi169 conmon[87179]: audit 2023-12-06T04:09:33.089973+0000 mgr.smithi017.mljnlu (mgr.14180) 942 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:35.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:35 smithi017 conmon[82019]: cluster 2023-12-06T04:09:33.566847+0000 mgr.smithi017.mljnlu (mgr.14180) 943 : cluster [DBG] pgmap v625: 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-12-06T04:09:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:35 smithi169 conmon[87179]: cluster 2023-12-06T04:09:33.566847+0000 mgr.smithi017.mljnlu (mgr.14180) 943 : cluster [DBG] pgmap v625: 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-12-06T04:09:36.262 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:36.262 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:36.797 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:37 smithi169 conmon[87179]: cluster 2023-12-06T04:09:35.567659+0000 mgr.smithi017.mljnlu (mgr.14180) 944 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:37.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:37 smithi017 conmon[82019]: cluster 2023-12-06T04:09:35.567659+0000 mgr.smithi017.mljnlu 2023-12-06T04:09:37.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:37 smithi017 conmon[82019]: (mgr.14180) 944 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:37.798 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:38.353 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:38 smithi017 conmon[82019]: audit 2023-12-06T04:09:36.257112+0000 mgr.smithi017.mljnlu (mgr.14180) 945 : 2023-12-06T04:09:38.354 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:38 smithi017 conmon[82019]: audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:38 smithi169 conmon[87179]: audit 2023-12-06T04:09:36.257112+0000 mgr.smithi017.mljnlu (mgr.14180) 945 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:39 smithi169 conmon[87179]: cluster 2023-12-06T04:09:37.568503+0000 mgr.smithi017.mljnlu (mgr.14180) 946 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:39.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:39 smithi017 conmon[82019]: cluster 2023-12-06T04:09:37.568503+0000 mgr.smithi017.mljnlu (mgr.14180) 946 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:39.589 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:39.589 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:02:04.439952Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.ezmkxm on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-ezmkxm\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.ezmkxm\nDeploy daemon haproxy.nfs.foo.smithi169.ezmkxm ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:00:12Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:00:49Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:01:26Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.912834Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.adisun on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-adisun\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.adisun\nDeploy daemon haproxy.nfs.foo.smithi017.adisun ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:02:41Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:18Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:03:56Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:04:33.914031Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.iruift on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:40.047 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:41.048 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:41 smithi169 conmon[87179]: cluster 2023-12-06T04:09:39.569163+0000 mgr.smithi017.mljnlu (mgr.14180) 947 : 2023-12-06T04:09:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:41 smithi169 conmon[87179]: cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:41 smithi169 conmon[87179]: audit 2023-12-06T04:09:39.584939+0000 mgr.smithi017.mljnlu (mgr.14180) 948 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:41 smithi169 conmon[87179]: audit 2023-12-06T04:09:40 2023-12-06T04:09:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:41 smithi169 conmon[87179]: .237373+0000 mon.smithi017 (mon.0) 737 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.bkgldh"}]: dispatch 2023-12-06T04:09:41.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:41 smithi017 conmon[82019]: cluster 2023-12-06T04:09:39.569163+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:09:41.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:41 smithi017 conmon[82019]: .14180) 947 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:09:41.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:41 smithi017 conmon[82019]: audit 2023-12-06T04:09:39.584939+0000 mgr.smithi017.mljnlu (mgr.14180) 948 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:41.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:41 smithi017 conmon[82019]: audit 2023-12-06T04:09:40.237373+0000 mon.smithi017 (mon.0) 737 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.bkgldh"}]: dispatch 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:09:40.236904+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: .14180) 949 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:0 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 9:40.237063+0000 mgr.smithi017.mljnlu (mgr.14180) 950 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:09:40.238039+0000 mgr.smithi017.mljnlu (mgr.14180) 951 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.321 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:09:40.240148+0000 mgr.smithi017.mljnlu (mgr.14180) 952 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cephadm 2023-12-06T04:09:40.241358+0000 mgr.smithi017.mljnlu (mgr.14180) 953 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cluster 2023-12-06T04:09:40.242179+0000 mgr.smithi017.mljnlu (mgr.14180) 954 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:42.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:42 smithi017 conmon[82019]: cluster 2023-12-06T04:09:41.087257+0000 mon.smithi017 (mon.0) 738 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:09:42.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:09:40.236904+0000 mgr.smithi017.mljnlu (mgr.14180) 949 : cephadm 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:09:42.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:09:40.237063+0000 mgr.s 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: mithi017.mljnlu (mgr.14180) 950 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:09:40.238039+0000 mgr.smithi017.mljnlu (mgr.14180) 951 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:09:40.240148+0000 mgr.smithi017.mljnlu (mgr.14180) 952 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cephadm 2023-12-06T04:09:40.241358+0000 mgr.smithi017.mljnlu (mgr.14180) 953 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:09:42.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cluster 2023-12- 2023-12-06T04:09:42.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: 06T04:09:40.242179+0000 mgr.smithi017.mljnlu (mgr.14180) 954 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:42.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:42 smithi169 conmon[87179]: cluster 2023-12-06T04:09:41.087257+0000 mon.smithi017 (mon.0) 738 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:09:42.722 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:42.723 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:43.097 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:43 smithi169 conmon[87179]: audit 2023-12-06T04:09:42.240792+0000 mon.smithi017 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:09:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:43 smithi169 conmon[87179]: cluster 2023-12-06T04:09:42.242873+0000 mgr.smithi017.mljnlu (mgr.14180) 955 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 191 B/s rd, 0 op/s 2023-12-06T04:09:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:43 smithi169 conmon[87179]: audit 2023-12-06T04:09:42.718001+0000 mgr.smithi017.mljnlu (mgr.14180) 956 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:43.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:43 smithi017 conmon[82019]: audit 2023-12-06T04:09:42.240792+0000 mon.smithi017 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:09:43.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:43 smithi017 conmon[82019]: cluster 2023-12-06T04:09:42.242873+0000 mgr.smithi017.mljnlu (mgr.14180) 955 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 191 B/s rd, 0 op/s 2023-12-06T04:09:43.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:43 smithi017 conmon[82019]: audit 2023-12-06T04:09:42.718001+0000 mgr.smithi017.mljnlu (mgr.14180) 956 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:44.098 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:45.894 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:45.894 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:46.246 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:45 smithi017 conmon[82019]: cluster 2023-12-06T04:09:44.243656+0000 mgr.smithi017.mljnlu (mgr.14180) 957 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:46.247 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:45 smithi169 conmon[87179]: cluster 2023-12-06T04:09:44.243656+0000 mgr.smithi017.mljnlu (mgr.14180) 957 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:47.249 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:46 smithi169 conmon[87179]: audit 2023-12-06T04:09:45.889625+0000 mgr.smithi017.mljnlu (mgr.14180) 958 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:47.279 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:46 smithi017 conmon[82019]: audit 2023-12-06T04:09:45.889625+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:09:47.279 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:46 smithi017 conmon[82019]: 958 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:48.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:47 smithi017 conmon[82019]: cluster 2023-12-06T04:09:46 2023-12-06T04:09:48.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:47 smithi017 conmon[82019]: .244402+0000 mgr.smithi017.mljnlu (mgr.14180) 959 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:48.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:47 smithi169 conmon[87179]: cluster 2023-12-06T04:09:46.244402+0000 mgr.smithi017.mljnlu (mgr.14180) 959 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:49.071 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:49.071 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:49.511 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:50.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:49 smithi169 conmon[87179]: cluster 2023-12-06T04:09:48.245161+0000 mgr.smithi017.mljnlu (mgr.14180) 960 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:50.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:49 smithi169 conmon[87179]: audit 2023-12-06T04:09:49.066376+0000 mgr.smithi017.mljnlu (mgr.14180) 961 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:50.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:49 smithi017 conmon[82019]: cluster 2023-12-06T04:09:48.245161+0000 mgr.smithi017.mljnlu (mgr.14180) 960 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:50.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:49 smithi017 conmon[82019]: audit 2023-12-06T04:09:49.066376+0000 mgr.smithi017.mljnlu (mgr.14180) 961 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:50.512 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:52.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:51 smithi169 conmon[87179]: cluster 2023-12-06T04:09:50.245866+0000 mgr.smithi017.mljnlu (mgr.14180) 962 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:52.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:51 smithi169 conmon[87179]: audit 2023-12-06T04:09:51.654631+0000 mon.smithi017 (mon.0) 740 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:09:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:51 smithi017 conmon[82019]: cluster 2023-12-06T04:09:50.245866+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:09:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:51 smithi017 conmon[82019]: .14180) 962 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 95 B/s rd, 0 op/s 2023-12-06T04:09:52.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:51 smithi017 conmon[82019]: audit 2023-12-06T04:09:51.654631+0000 mon.smithi017 (mon.0) 740 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:09:52.358 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:52.358 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:52.872 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:53.873 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:53 smithi169 conmon[87179]: cluster 2023-12-06T04:09:52.246585+0000 mgr.smithi017.mljnlu (mgr.14180) 963 : 2023-12-06T04:09:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:53 smithi169 conmon[87179]: cluster [DBG] pgmap v635: 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-12-06T04:09:54.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:53 smithi169 conmon[87179]: audit 2023-12-06T04:09:52.353757+0000 mgr.smithi017.mljnlu (mgr.14180) 964 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:53 smithi017 conmon[82019]: cluster 2023-12-06T04:09:52.246585+0000 mgr.smithi017.mljnlu (mgr.14180) 963 : cluster [DBG] pgmap v635: 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-12-06T04:09:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:53 smithi017 conmon[82019]: 2023-12-06T04:09:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:53 smithi017 conmon[82019]: audit 2023-12-06T04:09:52.353757+0000 mgr.smithi017.mljnlu (mgr.14180) 964 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:55.679 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:55.679 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:56.034 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:55 smithi017 conmon[82019]: cluster 2023-12-06T04:09:54.247599+0000 mgr.smithi017.mljnlu (mgr.14180) 965 : 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-12-06T04:09:56.036 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:09:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:55 smithi169 conmon[87179]: cluster 2023-12-06T04:09:54.247599+0000 mgr.smithi017.mljnlu (mgr.14180) 965 : cluster [DBG] 2023-12-06T04:09:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:55 smithi169 conmon[87179]: 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-12-06T04:09:57.037 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:09:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:56 smithi169 conmon[87179]: audit 2023-12-06T04:09:55.674560+0000 mgr.smithi017.mljnlu (mgr.14180) 966 : audit [DBG] 2023-12-06T04:09:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:56 smithi169 conmon[87179]: from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:57.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:56 smithi017 conmon[82019]: audit 2023-12-06T04:09:55.674560+0000 mgr.smithi017.mljnlu (mgr.14180) 966 : audit 2023-12-06T04:09:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:56 smithi017 conmon[82019]: [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:09:58.050 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:57 smithi017 conmon[82019]: cluster 2023-12-06T04:09:56.248414 2023-12-06T04:09:58.050 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:57 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 967 : 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-12-06T04:09:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:57 smithi169 conmon[87179]: cluster 2023-12-06T04:09:56.248414+0000 mgr.smithi017.mljnlu (mgr.14180) 967 2023-12-06T04:09:58.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:57 smithi169 conmon[87179]: : 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-12-06T04:09:58.843 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:09:58.843 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:09:59.187 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:00.188 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:00.217 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:59 smithi017 conmon[82019]: cluster 2023-12-06T04:09:58.249210+0000 mgr.smithi017.mljnlu (mgr.14180) 968 : 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-12-06T04:10:00.218 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:09:59 smithi017 conmon[82019]: audit 2023-12-06T04:09:58.838328+0000 mgr.smithi017.mljnlu (mgr.14180) 969 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:59 smithi169 conmon[87179]: cluster 2023-12-06T04:09:58.249210+0000 mgr.smithi017.mljnlu (mgr.14180) 968 : cluster 2023-12-06T04:10:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:59 smithi169 conmon[87179]: [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-12-06T04:10:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:09:59 smithi169 conmon[87179]: audit 2023-12-06T04:09:58.838328+0000 mgr.smithi017.mljnlu (mgr.14180) 969 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000144+0000 mon.smithi017 (mon.0) 741 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2023-12-06T04:10:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000178+0000 mon.smithi017 (mon.0) 742 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2023-12-06T04:10:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000195+0000 mon.smithi017 (mon.0) 743 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:10:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000211+0000 mon.smithi017 (mon.0) 744 : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:10:01.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000222+0000 mon.smithi017 (mon.0) 745 : cluster [WRN] Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000234+0000 mon.smithi017 (mon.0) 746 : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000250+0000 mon.smithi017 (mon.0) 747 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000265+0000 mon.smithi017 (mon.0) 748 : cluster [WRN] 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000278+0000 mon.smithi017 ( 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: mon.0) 749 : cluster [WRN] stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000290+0000 mon.smithi017 (mon.0) 750 : cluster [WRN] stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000303+0000 mon.smithi017 (mon.0) 751 : cluster [WRN] stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000317+0000 mon.smithi017 (mon.0) 752 : cluster [WRN] stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000330+0000 mon.smithi017 (mon.0) 753 : cluster [WRN] 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-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000342+0000 mon.smithi017 (mon.0) 754 : cluster [WRN] 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000371+0000 mon.smithi017 (mon.0) 755 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000387+0000 mon.smithi017 (mon.0) 756 : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000400+0000 mon.smithi017 (mon.0) 757 : cluster [WRN] Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:10:01.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000415+0000 mon.smithi017 (mon.0) 758 : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000424+0000 mon.smithi017 (mon.0) 759 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000433+0000 mon.smithi017 (mon.0) 760 : cluster [WRN] 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000446+0000 mon.smithi017 (mon.0) 761 : cluster [WRN] stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000478+0000 mon.smithi017 (mon.0) 762 : cluster [WRN] stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000489+0000 mon.smithi017 (mon.0) 763 : cluster [WRN] stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000501+0000 mon.smithi017 (mon.0) 764 : cluster [WRN] stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.000513+0000 mon.smithi017 (mon.0) 765 : 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster [WRN] 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-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04: 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: 10:00.000534+0000 mon.smithi017 (mon.0) 766 : cluster [WRN] 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: -06T04:10:00.000545+0000 mon.smithi017 (mon. 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: 0) 767 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00 2023-12-06T04:10:01.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: .000559+0000 mon.smithi017 (mon.0) 768 : cluster [WRN] 2023-12-06T04:10:01.072 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:00 smithi017 conmon[82019]: Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000144+0000 mon.smithi017 (mon.0) 741 : 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000178+0000 mon.smithi017 (mon.0) 742 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000195+0000 mon.smithi017 ( 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: mon.0) 743 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 2023-12-06T04:10: 2023-12-06T04:10:01.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 00.000211+0000 mon.smithi017 (mon.0) 744 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: :10:00.000222+0000 mon.smithi017 (mon.0) 745 : 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 10:00.000234+0000 mon.smithi017 (mon.0) 746 : cluster 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10: 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 00.000250+0000 mon.smithi017 (mon.0) 747 : cluster [WRN] 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.iosija ... 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: .000265+0000 mon.smithi017 (mon.0) 748 : cluster [WRN] 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10: 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 00.000278+0000 mon.smithi017 (mon.0) 749 : cluster 2023-12-06T04:10:01.252 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: [WRN] stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 10:00.000290+0000 mon.smithi017 (mon.0) 750 : 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] stat: stderr time="2023-12-06T04:05:18Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 10:00.000303+0000 mon.smithi017 (mon.0) 751 : cluster 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: [WRN] stat: stderr time="2023-12-06T04:05:55Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 10:00.000317+0000 mon.smithi017 (mon.0) 752 : 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] stat: stderr time="2023-12-06T04:06:33Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: -06T04:10:00.000330+0000 mon.smithi017 (mon.0 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: ) 753 : cluster [WRN] 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-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023- 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 12-06T04:10:00.000342+0000 mon.smithi017 (mon.0 2023-12-06T04:10:01.253 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: ) 754 : cluster [WRN] 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12- 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 06T04:10:00.000371+0000 mon.smithi017 (mon.0) 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 755 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: T04:10:00.000387+0000 mon.smithi017 (mon.0) 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 756 : cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12- 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 06T04:10:00.000400+0000 mon.smithi017 (mon.0 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: ) 757 : cluster [WRN] Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 04:10:00.000415+0000 mon.smithi017 (mon.0) 758 : 2023-12-06T04:10:01.254 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 10:00.000424+0000 mon.smithi017 (mon.0) 759 : 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi017.bkgldh ... 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10: 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 00.000433+0000 mon.smithi017 (mon.0) 760 : cluster [WRN] 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00. 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 000446+0000 mon.smithi017 (mon.0) 761 : cluster [WRN] stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:10:01.255 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 2023-12-06T04:10:00.000478+0000 mon.smithi017 ( 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: mon.0) 762 : cluster [WRN] stat: stderr time="2023-12-06T04:07:47Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000489+0000 mon.smithi017 (mon.0) 763 : cluster [WRN] stat: stderr time="2023-12-06T04:08:25Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: .000501+0000 mon.smithi017 (mon.0) 764 : cluster [WRN] 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:09:02Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000513 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 765 : cluster [WRN] 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-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:01.256 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 2023-12-06T04:10:00.000534 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 766 : cluster [WRN] 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.000545 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: +0000 mon.smithi017 (mon.0) 767 : cluster [WRN] 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: .000559+0000 mon.smithi017 (mon.0) 768 : cluster [WRN] 2023-12-06T04:10:01.257 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:00 smithi169 conmon[87179]: Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:10:02.000 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:02.000 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:02.191 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:01 smithi017 conmon[82019]: cluster 2023-12-06T04:10:00.249915+0000 mgr.smithi017.mljnlu (mgr.14180) 970 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:01 smithi169 conmon[87179]: cluster 2023-12-06T04:10:00.249915+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:10:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:01 smithi169 conmon[87179]: 970 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:02.341 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:02 smithi169 conmon[87179]: audit 2023-12-06T04:10:01.995357+0000 mgr.smithi017.mljnlu (mgr.14180) 971 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:02 smithi169 conmon[87179]: 2023-12-06T04:10:03.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:02 smithi017 conmon[82019]: audit 2023-12-06T04:10:01.995357+0000 mgr.smithi017.mljnlu (mgr.14180) 971 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:03.343 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:04.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:03 smithi169 conmon[87179]: cluster 2023-12-06T04:10:02.250581+0000 mgr.smithi017.mljnlu (mgr.14180) 972 : cluster [DBG] pgmap v640: 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-12-06T04:10:04.266 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:03 smithi017 conmon[82019]: cluster 2023-12-06T04:10:02.250581+0000 mgr.smithi017.mljnlu (mgr.14180) 972 : cluster [DBG] pgmap v640: 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-12-06T04:10:05.064 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:05.064 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:05.500 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:05 smithi169 conmon[87179]: cluster 2023-12-06T04:10:04.251329+0000 mgr.smithi017.mljnlu (mgr.14180) 973 : 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-12-06T04:10:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:05 smithi169 conmon[87179]: audit 2023-12-06T04:10:05.059205+0000 mgr.smithi017.mljnlu (mgr.14180) 974 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:05 smithi017 conmon[82019]: cluster 2023-12-06T04:10:04.251329+0000 mgr.smithi017.mljnlu (mgr.14180) 973 : 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-12-06T04:10:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:05 smithi017 conmon[82019]: audit 2023-12-06T04:10:05.059205+0000 mgr.smithi017.mljnlu (mgr.14180) 974 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:06.501 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:08.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:07 smithi017 conmon[82019]: cluster 2023-12-06T04:10:06. 2023-12-06T04:10:08.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:07 smithi017 conmon[82019]: 252170+0000 mgr.smithi017.mljnlu (mgr.14180) 975 : 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-12-06T04:10:08.215 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:08.215 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:08.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:07 smithi169 conmon[87179]: cluster 2023-12-06T04:10:06.252170+0000 mgr.smithi017.mljnlu (mgr.14180) 975 : 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-12-06T04:10:08.664 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:09.665 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:10.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:09 smithi017 conmon[82019]: audit 2023-12-06T04: 2023-12-06T04:10:10.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:09 smithi017 conmon[82019]: 10:08.211177+0000 mgr.smithi017.mljnlu (mgr.14180) 976 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:10.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:09 smithi017 conmon[82019]: cluster 2023-12-06T04:10:08.253054+0000 mgr.smithi017.mljnlu (mgr.14180) 977 : 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-12-06T04:10:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:09 smithi169 conmon[87179]: audit 2023-12-06T04:10:08.211177+0000 mgr.smithi017.mljnlu (mgr.14180) 976 : audit 2023-12-06T04:10:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:09 smithi169 conmon[87179]: [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:10.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:09 smithi169 conmon[87179]: cluster 2023-12-06T04:10:08.253054+0000 mgr.smithi017.mljnlu (mgr.14180) 977 : 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-12-06T04:10:11.471 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:11.471 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:11.925 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:12.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:11 smithi169 conmon[87179]: cluster 2023-12-06T04:10:10.253822+0000 mgr.smithi017.mljnlu (mgr.14180) 978 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:12.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:11 smithi017 conmon[82019]: cluster 2023-12-06T04:10:10.253822+0000 mgr.smithi017.mljnlu (mgr.14180) 978 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:12.927 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:12 smithi169 conmon[87179]: audit 2023-12-06T04:10:11.466701+0000 mgr.smithi017.mljnlu (mgr.14180) 979 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:13.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:12 smithi169 conmon[87179]: 2023-12-06T04:10:13.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:12 smithi017 conmon[82019]: audit 2023-12-06T04:10:11.466701+0000 mgr.smithi017.mljnlu (mgr.14180) 979 : audit [DBG] 2023-12-06T04:10:13.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:12 smithi017 conmon[82019]: from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:14.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:13 smithi169 conmon[87179]: cluster 2023-12-06T04:10:12.254840+0000 mgr.smithi017.mljnlu (mgr.14180) 980 : cluster [DBG] pgmap v645: 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-12-06T04:10:14.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:13 smithi017 conmon[82019]: cluster 2023-12-06T04:10:12.254840+0000 mgr.smithi017.mljnlu 2023-12-06T04:10:14.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:13 smithi017 conmon[82019]: (mgr.14180) 980 : cluster [DBG] pgmap v645: 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-12-06T04:10:14.720 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:14.721 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:15.089 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:16.090 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:15 smithi169 conmon[87179]: cluster 2023-12-06T04:10:14.255692+0000 mgr.smithi017.mljnlu (mgr.14180) 981 : 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-12-06T04:10:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:15 smithi169 conmon[87179]: audit 2023-12-06T04:10:14.715663+0000 mgr.smithi017.mljnlu (mgr.14180) 982 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:16.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:15 smithi017 conmon[82019]: cluster 2023-12-06T04:10:14.255692+0000 mgr.smithi017.mljnlu (mgr.14180) 981 2023-12-06T04:10:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:15 smithi017 conmon[82019]: : 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-12-06T04:10:16.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:15 smithi017 conmon[82019]: audit 2023-12-06T04:10:14.715663+0000 mgr.smithi017.mljnlu (mgr.14180) 982 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:17.892 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:17.893 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:18.224 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:17 smithi017 conmon[82019]: cluster 2023-12-06T04:10:16.256416+0000 mgr.smithi017.mljnlu (mgr.14180) 983 : 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-12-06T04:10:18.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:17 smithi169 conmon[87179]: cluster 2023-12-06T04:10:16.256416+0000 mgr.smithi017.mljnlu (mgr.14180) 983 : 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-12-06T04:10:18.440 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:18 smithi169 conmon[87179]: audit 2023-12-06T04:10:17.887773+0000 mgr.smithi017.mljnlu (mgr.14180) 984 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:19.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:18 smithi169 conmon[87179]: 2023-12-06T04:10:19.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:18 smithi017 conmon[82019]: audit 2023-12-06T04:10:17.887773+0000 2023-12-06T04:10:19.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:18 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 984 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:19.442 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:20.203 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:19 smithi017 conmon[82019]: cluster 2023-12-06T04:10:18.257208+0000 mgr.smithi017.mljnlu (mgr.14180) 985 : 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-12-06T04:10:20.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:19 smithi169 conmon[87179]: cluster 2023-12-06T04:10:18.257208+0000 mgr.smithi017.mljnlu (mgr.14180) 985 : 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-12-06T04:10:21.269 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:21.270 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:21.704 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:22.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:21 smithi169 conmon[87179]: cluster 2023-12-06T04:10:20.257840+0000 mgr.smithi017.mljnlu (mgr.14180) 986 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:22.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:21 smithi017 conmon[82019]: cluster 2023-12-06T04:10:20.257840+0000 mgr.smithi017.mljnlu 2023-12-06T04:10:22.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:21 smithi017 conmon[82019]: (mgr.14180) 986 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:22.706 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:23.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:22 smithi017 conmon[82019]: audit 2023-12-06T04:10:21.265426+0000 mgr.smithi017.mljnlu 2023-12-06T04:10:23.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:22 smithi017 conmon[82019]: (mgr.14180) 987 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:22 smithi169 conmon[87179]: audit 2023-12-06T04:10:21.265426+0000 mgr.smithi017.mljnlu (mgr.14180) 987 : audit 2023-12-06T04:10:23.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:22 smithi169 conmon[87179]: [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:24.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:23 smithi017 conmon[82019]: cluster 2023-12-06T04:10:22.258601+0000 mgr.smithi017.mljnlu (mgr.14180) 988 : cluster [DBG] pgmap v650: 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-12-06T04:10:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:23 smithi169 conmon[87179]: cluster 2023-12-06T04:10:22.258601+0000 mgr.smithi017.mljnlu (mgr.14180) 988 2023-12-06T04:10:24.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:23 smithi169 conmon[87179]: : cluster [DBG] pgmap v650: 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-12-06T04:10:24.627 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:24.627 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:25.070 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:26.072 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:26.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:25 smithi169 conmon[87179]: cluster 2023-12-06T04:10:24.259360+0000 mgr.smithi017.mljnlu (mgr.14180) 989 : cluster 2023-12-06T04:10:26.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:25 smithi169 conmon[87179]: [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-12-06T04:10:26.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:25 smithi169 conmon[87179]: audit 2023-12-06T04:10:24.623301+0000 mgr.smithi017.mljnlu (mgr.14180) 990 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:26.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:25 smithi017 conmon[82019]: cluster 2023-12-06T04:10:24.259360+0000 mgr.smithi017.mljnlu (mgr.14180) 989 : 2023-12-06T04:10:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:25 smithi017 conmon[82019]: 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-12-06T04:10:26.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:25 smithi017 conmon[82019]: audit 2023-12-06T04:10:24.623301+0000 mgr.smithi017.mljnlu (mgr.14180) 990 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:27.787 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:27.787 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:27 smithi017 conmon[82019]: cluster 2023-12-06T04:10:26.260037+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:10:28.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:27 smithi017 conmon[82019]: 14180) 991 : 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-12-06T04:10:28.233 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:28.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:27 smithi169 conmon[87179]: cluster 2023-12-06T04:10:26.260037+0000 mgr.smithi017.mljnlu (mgr.14180) 991 2023-12-06T04:10:28.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:27 smithi169 conmon[87179]: : 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-12-06T04:10:29.235 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:28 smithi169 conmon[87179]: audit 2023-12-06T04:10:27.782797+0000 mgr.smithi017.mljnlu (mgr.14180) 992 : audit 2023-12-06T04:10:29.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:28 smithi169 conmon[87179]: [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:29.267 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:28 smithi017 conmon[82019]: audit 2023-12-06T04:10:27.782797+0000 mgr.smithi017.mljnlu (mgr.14180) 992 : audit [DBG] 2023-12-06T04:10:29.268 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:28 smithi017 conmon[82019]: from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:30.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:29 smithi017 conmon[82019]: cluster 2023-12-06T04:10:28.260793+0000 2023-12-06T04:10:30.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:29 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 993 : 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-12-06T04:10:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:29 smithi169 conmon[87179]: cluster 2023-12-06T04:10:28.260793+0000 mgr.smithi017.mljnlu (mgr.14180) 993 2023-12-06T04:10:30.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:29 smithi169 conmon[87179]: : 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-12-06T04:10:31.048 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:31.049 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:31.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:31 smithi169 conmon[87179]: cluster 2023-12-06T04:10:30.261427+0000 mgr.smithi017.mljnlu (mgr.14180) 994 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:32.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:31 smithi169 conmon[87179]: audit 2023-12-06T04:10:31.044501+0000 mgr.smithi017.mljnlu (mgr.14180) 995 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:32.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:31 smithi017 conmon[82019]: cluster 2023-12-06T04:10:30.261427+0000 mgr.smithi017.mljnlu (mgr.14180) 994 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:32.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:31 smithi017 conmon[82019]: audit 2023-12-06T04:10:31.044501+0000 mgr.smithi017.mljnlu (mgr.14180) 995 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:32.399 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:34.220 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:34.220 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:34.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:33 smithi017 conmon[82019]: cluster 2023-12-06T04 2023-12-06T04:10:34.241 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:33 smithi017 conmon[82019]: :10:32.262319+0000 mgr.smithi017.mljnlu (mgr.14180) 996 : cluster [DBG] pgmap v655: 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-12-06T04:10:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:33 smithi169 conmon[87179]: cluster 2023-12-06T04:10:32.262319+0000 mgr.smithi017.mljnlu (mgr.14180) 996 : cluster [DBG] pgmap v655: 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-12-06T04:10:34.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:33 smithi169 conmon[87179]: 2023-12-06T04:10:34.562 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:35.563 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:35 smithi169 conmon[87179]: audit 2023-12-06T04:10:34.215245+0000 mgr.smithi017.mljnlu (mgr.14180) 997 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:35 smithi169 conmon[87179]: cluster 2023-12-06T04:10:34.263284+0000 mgr.smithi017.mljnlu (mgr.14180) 998 : 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-12-06T04:10:36.310 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:35 smithi017 conmon[82019]: audit 2023-12-06T04:10:34.215245+0000 mgr.smithi017.mljnlu (mgr.14180) 997 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:36.310 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:35 smithi017 conmon[82019]: cluster 2023-12-06T04:10:34.263284+0000 mgr.smithi017.mljnlu (mgr.14180) 998 : 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-12-06T04:10:37.365 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:37.365 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:37.811 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:38.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:37 smithi017 conmon[82019]: cluster 2023-12-06T04:10:36.264217+0000 2023-12-06T04:10:38.070 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:37 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 999 : 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-12-06T04:10:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:37 smithi169 conmon[87179]: cluster 2023-12-06T04:10:36.264217+0000 mgr.smithi017.mljnlu (mgr.14180) 999 2023-12-06T04:10:38.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:37 smithi169 conmon[87179]: : 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-12-06T04:10:38.812 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:38 smithi169 conmon[87179]: audit 2023-12-06T04:10:37.360566+0000 mgr.smithi017.mljnlu (mgr.14180) 1000 : audit 2023-12-06T04:10:39.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:38 smithi169 conmon[87179]: [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:39.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:38 smithi017 conmon[82019]: audit 2023-12-06T04:10:37.360566+0000 mgr.smithi017.mljnlu (mgr.14180) 1000 : 2023-12-06T04:10:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:38 smithi017 conmon[82019]: audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:39 smithi169 conmon[87179]: cluster 2023-12-06T04:10:38.265061+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:10:40.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:39 smithi169 conmon[87179]: 1001 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:40.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:39 smithi017 conmon[82019]: cluster 2023-12-06T04:10:38.265061+0000 mgr.smithi017.mljnlu (mgr.14180) 1001 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:40.608 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:40.608 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:37.111706Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:37.111851Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:37.111925Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:37.111991Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:37.112056Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:37.112322Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:40.989 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:40 smithi169 conmon[87179]: audit 2023-12-06T04:10:40.243798+0000 mon.smithi017 (mon.0) 769 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T04:10:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:40 smithi169 conmon[87179]: 2023-12-06T04:10:41.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:40 smithi169 conmon[87179]: audit 2023-12-06T04:10:40.644195+0000 mon.smithi017 (mon.0) 770 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:41.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:40 smithi017 conmon[82019]: audit 2023-12-06T04:10:40.243798+0000 mon.smithi017 (mon 2023-12-06T04:10:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:40 smithi017 conmon[82019]: .0) 769 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-06T04:10:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:40 smithi017 conmon[82019]: audit 2023-12-06T04:10:40.644195+0000 mon.smithi017 (mon.0) 770 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:41.990 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:41 smithi169 conmon[87179]: cluster 2023-12-06T04:10:40.265712+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:10:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:41 smithi169 conmon[87179]: 1002 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:42.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:41 smithi169 conmon[87179]: audit 2023-12-06T04:10:40.601425+0000 mgr.smithi017.mljnlu (mgr.14180) 1003 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:41 smithi017 conmon[82019]: cluster 2023-12-06T04:10:40.265712+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:10:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:41 smithi017 conmon[82019]: .14180) 1002 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:42.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:41 smithi017 conmon[82019]: audit 2023-12-06T04:10:40.601425+0000 mgr.smithi017.mljnlu (mgr.14180) 1003 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:44.142 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:44.143 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:04:40.851030Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:04:40.851114Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:04:40.851186Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:04:40.850955Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:04:40.850810Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:04:40.851695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:04:40.851251Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:04:40.851379Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:04:40.851315Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:04:40.851632Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:44.378 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:44 smithi017 conmon[82019]: cluster 2023-12-06T04:10:42.266522+0000 mgr.smithi017.mljnlu 2023-12-06T04:10:44.378 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:44 smithi017 conmon[82019]: (mgr.14180) 1004 : cluster [DBG] pgmap v660: 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-12-06T04:10:44.379 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:44 smithi017 conmon[82019]: audit 2023-12-06T04:10:43.101244+0000 mon.smithi017 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:44.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:44 smithi169 conmon[87179]: cluster 2023-12-06T04:10:42.266522+0000 mgr.smithi017.mljnlu (mgr.14180) 1004 : cluster [DBG] pgmap v660: 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-12-06T04:10:44.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:44 smithi169 conmon[87179]: audit 2023-12-06T04:10:43.101244+0000 mon.smithi017 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:44.552 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:45.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:45 smithi169 conmon[87179]: audit 2023-12-06T04:10:44.138138+0000 mgr.smithi017.mljnlu (mgr.14180) 1005 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:45.553 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:45.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:45 smithi017 conmon[82019]: audit 2023-12-06T04:10:44.138138+0000 2023-12-06T04:10:45.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:45 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1005 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:46.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:46 smithi169 conmon[87179]: cluster 2023-12-06T04:10:44.267274+0000 mgr.smithi017.mljnlu (mgr.14180) 1006 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:46.520 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:46 smithi017 conmon[82019]: cluster 2023-12-06T04:10:44.267274+0000 mgr.smithi017.mljnlu (mgr.14180) 1006 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:47.457 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:47.457 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:47.923 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:48.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: cluster 2023-12-06T04:10:46.267969+0000 mgr.smithi017.mljnlu (mgr.14180) 1007 : 2023-12-06T04:10:48.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:48.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023-12-06T04:10:47.428734+0000 mon.smithi017 (mon.0) 772 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: -12-06T04:10:47.991632+0000 mon.smithi017 (mon.0) 773 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023-12-06T04:10 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: :47.992376+0000 mon.smithi017 (mon.0) 774 : audit 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023-12-06T04:10:47 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: .996825+0000 mon.smithi017 (mon.0) 775 : audit 2023-12-06T04:10:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023-12-06T04:10:48 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: .000526+0000 mon.smithi017 (mon.0) 776 : audit 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: audit 2023-12-06T04:10:48 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: .007534+0000 mon.smithi017 (mon.0) 777 : audit 2023-12-06T04:10:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:48 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: cluster 2023-12-06T04:10:46.267969+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: .14180) 1007 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:47.428734+0000 mon.smithi017 (mon.0) 772 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:47.991632+0000 mon.smithi017 (mon.0) 773 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:47.992376+0000 mon.smithi017 (mon.0) 774 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:47.996825+0000 mon.smithi017 (mon.0) 775 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:48.000526 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 776 : audit [DBG] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: audit 2023-12-06T04:10:48.007534+0000 mon.smithi017 (mon.0) 777 : audit 2023-12-06T04:10:48.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:48 smithi017 conmon[82019]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:48.924 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:49.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: audit 2023-12-06T04:10:47.452657+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:10:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: mgr.14180) 1008 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: cluster 2023-12-06T04:10:47.997439+0000 mgr.smithi017.mljnlu (mgr.14180) 1009 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: cephadm 2023-12-06T04:10:48.009526+0000 mgr.smithi017.mljnlu (mgr.14180) 1010 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.rhslec on smithi169 2023-12-06T04:10:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: cluster 2023-12-06T04:10:48.995144+0000 mon.smithi017 (mon.0) 778 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T04:10:49.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: cluster 2023-12-06T04:10: 2023-12-06T04:10:49.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:49 smithi017 conmon[82019]: 48.995198+0000 mon.smithi017 (mon.0) 779 : cluster [INF] Cluster is now healthy 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: audit 2023-12-06T04:10:47.452657+0000 mgr.smithi017.mljnlu (mgr.14180) 1008 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: cluster 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: 2023-12-06T04:10:47.997439+0000 mgr.smithi017.mljnlu (mgr.14180) 1009 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: cephadm 2023-12-06T04:10:48.009526+0000 mgr.smithi017.mljnlu (mgr.14180) 1010 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi169.rhslec on smithi169 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: cluster 2023-12-06T04:10:48.995144+0000 mon.smithi017 (mon. 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: 0) 778 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: cluster 2023 2023-12-06T04:10:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:49 smithi169 conmon[87179]: -12-06T04:10:48.995198+0000 mon.smithi017 (mon.0) 779 : cluster [INF] Cluster is now healthy 2023-12-06T04:10:50.631 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:50.631 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:51.084 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:51.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:51 smithi017 conmon[82019]: cluster 2023-12-06T04:10:49.998146+0000 mgr.smithi017.mljnlu (mgr.14180) 1011 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:51 smithi169 conmon[87179]: cluster 2023-12-06T04:10:49.998146+0000 mgr.smithi017.mljnlu (mgr.14180) 1011 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:52.085 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:52 smithi169 conmon[87179]: audit 2023-12-06T04:10:50.626588+0000 mgr.smithi017.mljnlu (mgr.14180) 1012 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:52 smithi169 conmon[87179]: audit 2023-12-06T04:10:51.656542+0000 mon.smithi017 (mon.0) 780 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:52.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:52 smithi017 conmon[82019]: audit 2023-12-06T04:10:50.626588 2023-12-06T04:10:52.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:52 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 1012 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:52.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:52 smithi017 conmon[82019]: audit 2023-12-06T04:10:51.656542 2023-12-06T04:10:52.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:52 smithi017 conmon[82019]: +0000 mon.smithi017 (mon.0) 780 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:10:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:53 smithi017 conmon[82019]: cluster 2023-12-06T04:10:51.998992+0000 mgr.smithi017.mljnlu (mgr.14180) 1013 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:53 smithi169 conmon[87179]: cluster 2023-12-06T04:10:51.998992+0000 mgr.smithi017.mljnlu (mgr.14180) 1013 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:53.819 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:53.819 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:54.157 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:55.158 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:55.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:54 smithi017 conmon[82019]: audit 2023-12-06T04:10:53.814395+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:10:55.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:54 smithi017 conmon[82019]: ) 1014 : audit [DBG] from='client.15838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:55.189 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:54 smithi017 conmon[82019]: cluster 2023-12-06T04:10:53.999668+0000 mgr.smithi017.mljnlu (mgr.14180) 1015 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:54 smithi169 conmon[87179]: audit 2023-12-06T04:10:53.814395+0000 mgr.smithi017.mljnlu (mgr.14180) 1014 : audit [DBG] 2023-12-06T04:10:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:54 smithi169 conmon[87179]: from='client.15838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:54 smithi169 conmon[87179]: cluster 2023-12-06T04:10:53.999668+0000 mgr.smithi017.mljnlu (mgr.14180) 1015 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:56.858 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:10:56.859 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:10:57.251 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:57 smithi017 conmon[82019]: cluster 2023-12-06T04:10:56.000115+0000 mgr.smithi017.mljnlu (mgr.14180) 1016 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:57.306 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:10:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:57 smithi169 conmon[87179]: cluster 2023-12-06T04:10:56.000115+0000 mgr.smithi017.mljnlu (mgr.14180) 1016 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:58.308 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:10:58.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:58 smithi017 conmon[82019]: audit 2023-12-06T04:10:56.854082+0000 mgr.smithi017.mljnlu (mgr.14180) 1017 : audit 2023-12-06T04:10:58.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:58 smithi017 conmon[82019]: [DBG] from='client.15842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:58.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:58 smithi169 conmon[87179]: audit 2023-12-06T04:10:56.854082+0000 mgr.smithi017.mljnlu (mgr.14180) 1017 : audit [DBG] from='client.15842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:10:59.227 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:59 smithi017 conmon[82019]: cluster 2023-12-06T04:10:58.000938+0000 2023-12-06T04:10:59.227 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:10:59 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1018 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:10:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:10:59 smithi169 conmon[87179]: cluster 2023-12-06T04:10:58.000938+0000 mgr.smithi017.mljnlu (mgr.14180) 1018 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2023-12-06T04:11:00.015 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:00.016 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:00.460 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:01.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:01 smithi017 conmon[82019]: cluster 2023-12-06T04:11:00.001531+0000 mgr.smithi017.mljnlu (mgr.14180) 1019 : 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-12-06T04:11:01.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:01 smithi017 conmon[82019]: audit 2023-12-06T04:11:00.011326+0000 mgr.smithi017.mljnlu (mgr.14180) 1020 : audit [DBG] from='client.15846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:01.461 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:01 smithi169 conmon[87179]: cluster 2023-12-06T04:11:00.001531+0000 mgr.smithi017.mljnlu (mgr.14180) 1019 : 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-12-06T04:11:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:01 smithi169 conmon[87179]: audit 2023-12-06T04:11:00.011326+0000 mgr.smithi017.mljnlu (mgr.14180) 1020 : audit [DBG] from='client.15846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:03.174 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:03.174 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:03.367 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:03 smithi017 conmon[82019]: cluster 2023-12-06T04:11:03.367 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:03 smithi017 conmon[82019]: 2023-12-06T04:11:02.002141+0000 mgr.smithi017.mljnlu (mgr.14180) 1021 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:03 smithi169 conmon[87179]: cluster 2023-12-06T04:11:02.002141+0000 mgr.smithi017.mljnlu (mgr.14180) 1021 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:03.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:04.626 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:05.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:04 smithi017 conmon[82019]: audit 2023-12-06T04:11:03.169178+0000 mgr.smithi017.mljnlu (mgr.14180) 1022 : audit [DBG] from='client.15850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:04 smithi017 conmon[82019]: cluster 2023-12-06T04:11:04.002887+0000 mgr.smithi017.mljnlu (mgr.14180) 1023 : cluster [DBG] pgmap v671: 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-12-06T04:11:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:04 smithi169 conmon[87179]: audit 2023-12-06T04:11:03.169178+0000 mgr.smithi017.mljnlu (mgr.14180) 1022 : audit [DBG] 2023-12-06T04:11:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:04 smithi169 conmon[87179]: from='client.15850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:04 smithi169 conmon[87179]: cluster 2023-12-06T04:11:04.002887+0000 mgr.smithi017.mljnlu (mgr.14180) 1023 : cluster [DBG] pgmap v671: 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-12-06T04:11:06.352 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:06.352 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:06.778 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:07.320 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:07 smithi017 conmon[82019]: cluster 2023-12-06T04:11:06.003452+0000 mgr.smithi017.mljnlu (mgr.14180) 1024 : 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-12-06T04:11:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:07 smithi169 conmon[87179]: cluster 2023-12-06T04:11:06.003452+0000 mgr.smithi017.mljnlu (mgr.14180) 1024 : 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-12-06T04:11:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:07 smithi169 conmon[87179]: 2023-12-06T04:11:07.779 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:08.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:08 smithi017 conmon[82019]: audit 2023-12-06T04:11:06 2023-12-06T04:11:08.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:08 smithi017 conmon[82019]: .347657+0000 mgr.smithi017.mljnlu (mgr.14180) 1025 : audit [DBG] from='client.15854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:08.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:08 smithi169 conmon[87179]: audit 2023-12-06T04:11:06.347657+0000 mgr.smithi017.mljnlu (mgr.14180) 1025 : audit [DBG] from='client.15854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:08.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:08 smithi169 conmon[87179]: 2023-12-06T04:11:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:09 smithi017 conmon[82019]: cluster 2023-12-06T04:11 2023-12-06T04:11:09.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:09 smithi017 conmon[82019]: :08.004133+0000 mgr.smithi017.mljnlu (mgr.14180) 1026 : 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-12-06T04:11:09.453 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:09.453 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:09 smithi169 conmon[87179]: cluster 2023-12-06T04:11:08.004133+0000 mgr.smithi017.mljnlu (mgr.14180) 1026 : 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-12-06T04:11:09.830 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:10.831 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:11 smithi017 conmon[82019]: audit 2023-12-06T04:11:09.449048+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:11:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:11 smithi017 conmon[82019]: 1027 : audit [DBG] from='client.15858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:11.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:11 smithi017 conmon[82019]: cluster 2023-12-06T04:11:10.005008+0000 mgr.smithi017.mljnlu (mgr.14180) 1028 : 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-12-06T04:11:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:11 smithi169 conmon[87179]: audit 2023-12-06T04:11:09.449048+0000 mgr.smithi017.mljnlu (mgr.14180) 1027 : audit [DBG] from='client.15858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:11 smithi169 conmon[87179]: 2023-12-06T04:11:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:11 smithi169 conmon[87179]: cluster 2023-12-06T04:11:10.005008+0000 mgr.smithi017.mljnlu (mgr.14180) 1028 : 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-12-06T04:11:12.543 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:12.543 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:12.994 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:13.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:13 smithi017 conmon[82019]: cluster 2023-12-06T04:11:12.005631+0000 mgr.smithi017.mljnlu (mgr.14180) 1029 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:13 smithi169 conmon[87179]: cluster 2023-12-06T04:11:12.005631+0000 mgr.smithi017.mljnlu (mgr.14180) 1029 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:13.994 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:14.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:14 smithi017 conmon[82019]: audit 2023-12-06T04:11:12.538384+0000 mgr.smithi017.mljnlu (mgr.14180) 1030 : audit [DBG] from='client.15862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:14.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:14 smithi169 conmon[87179]: audit 2023-12-06T04:11:12.538384+0000 mgr.smithi017.mljnlu 2023-12-06T04:11:14.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:14 smithi169 conmon[87179]: (mgr.14180) 1030 : audit [DBG] from='client.15862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:15 smithi017 conmon[82019]: cluster 2023-12-06T04:11:14.006472+0000 mgr.smithi017.mljnlu (mgr.14180) 1031 : cluster [DBG] pgmap v676: 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-12-06T04:11:15.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:15 smithi169 conmon[87179]: cluster 2023-12-06T04:11:14.006472+0000 mgr.smithi017.mljnlu (mgr.14180) 1031 : cluster [DBG] pgmap v676: 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-12-06T04:11:15.725 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:15.725 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:16.160 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:17.161 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:17.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:17 smithi169 conmon[87179]: audit 2023-12-06T04:11:15.721112+0000 mgr.smithi017.mljnlu (mgr.14180) 1032 : audit [DBG] 2023-12-06T04:11:17.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:17 smithi169 conmon[87179]: from='client.15866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:17.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:17 smithi169 conmon[87179]: cluster 2023-12-06T04:11:16.007166+0000 mgr.smithi017.mljnlu (mgr.14180) 1033 : 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-12-06T04:11:17.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:17 smithi017 conmon[82019]: audit 2023-12-06T04:11:15.721112+0000 mgr.smithi017.mljnlu (mgr.14180) 1032 : audit 2023-12-06T04:11:17.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:17 smithi017 conmon[82019]: [DBG] from='client.15866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:17.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:17 smithi017 conmon[82019]: cluster 2023-12-06T04:11:16.007166+0000 mgr.smithi017.mljnlu (mgr.14180) 1033 : 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-12-06T04:11:18.930 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:18.931 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:19.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:19 smithi017 conmon[82019]: cluster 2023-12-06T04:11:18.007777+0000 mgr.smithi017.mljnlu (mgr.14180) 1034 : 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-12-06T04:11:19.325 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:19 smithi169 conmon[87179]: cluster 2023-12-06T04:11:18.007777+0000 mgr.smithi017.mljnlu (mgr.14180) 1034 : cluster [DBG] 2023-12-06T04:11:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:19 smithi169 conmon[87179]: 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-12-06T04:11:20.326 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:20.359 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:20 smithi017 conmon[82019]: audit 2023-12-06T04:11:18.926236+0000 mgr.smithi017.mljnlu (mgr.14180) 1035 : audit [DBG] from='client.15870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:20.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:20 smithi169 conmon[87179]: audit 2023-12-06T04:11:18.926236+0000 mgr.smithi017.mljnlu (mgr.14180) 1035 : audit [DBG] 2023-12-06T04:11:20.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:20 smithi169 conmon[87179]: from='client.15870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:21.198 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:21 smithi017 conmon[82019]: cluster 2023-12-06T04:11:20.008576+0000 mgr.smithi017.mljnlu (mgr.14180) 1036 : 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-12-06T04:11:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:21 smithi169 conmon[87179]: cluster 2023-12-06T04:11:20.008576+0000 mgr.smithi017.mljnlu (mgr.14180) 1036 2023-12-06T04:11:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:21 smithi169 conmon[87179]: : 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-12-06T04:11:22.040 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:22.040 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:22.492 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:23.493 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:23 smithi169 conmon[87179]: cluster 2023-12-06T04:11:22.009186+0000 mgr.smithi017.mljnlu (mgr.14180) 1037 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:23 smithi169 conmon[87179]: 2023-12-06T04:11:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:23 smithi169 conmon[87179]: audit 2023-12-06T04:11:22.035493+0000 mgr.smithi017.mljnlu (mgr.14180) 1038 : audit [DBG] from='client.15874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:23.524 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:23 smithi017 conmon[82019]: cluster 2023-12-06T04:11:22.009186+0000 mgr.smithi017.mljnlu (mgr.14180) 1037 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:23.524 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:23 smithi017 conmon[82019]: audit 2023-12-06T04:11:22.035493+0000 mgr.smithi017.mljnlu (mgr.14180) 1038 : audit [DBG] from='client.15874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:25.071 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:24 smithi017 conmon[82019]: cluster 2023-12-06T04:11:24.009889+0000 mgr.smithi017.mljnlu (mgr.14180) 1039 : cluster [DBG] pgmap v681: 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-12-06T04:11:25.201 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:25.201 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:24 smithi169 conmon[87179]: cluster 2023-12-06T04:11:24.009889+0000 mgr.smithi017.mljnlu (mgr.14180) 1039 : cluster [DBG] 2023-12-06T04:11:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:24 smithi169 conmon[87179]: pgmap v681: 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-12-06T04:11:25.646 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:26.647 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:27.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:27 smithi017 conmon[82019]: audit 2023-12-06T04:11:25.196515+0000 2023-12-06T04:11:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:27 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1040 : audit [DBG] from='client.15878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:27 smithi017 conmon[82019]: cluster 2023-12-06T04:11:26.010368+0000 mgr.smithi017.mljnlu (mgr.14180) 1041 : 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-12-06T04:11:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:27 smithi169 conmon[87179]: audit 2023-12-06T04:11:25.196515+0000 mgr.smithi017.mljnlu (mgr.14180) 1040 : audit [DBG] from='client.15878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:27 smithi169 conmon[87179]: 2023-12-06T04:11:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:27 smithi169 conmon[87179]: cluster 2023-12-06T04:11:26.010368+0000 mgr.smithi017.mljnlu (mgr.14180) 1041 : 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-12-06T04:11:28.358 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:28.359 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:28.812 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:29 smithi169 conmon[87179]: cluster 2023-12-06T04:11:28.011203+0000 mgr.smithi017.mljnlu (mgr.14180) 1042 : cluster 2023-12-06T04:11:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:29 smithi169 conmon[87179]: [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-12-06T04:11:29.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:29 smithi017 conmon[82019]: cluster 2023-12-06T04:11:28.011203+0000 mgr.smithi017.mljnlu (mgr.14180) 1042 : 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-12-06T04:11:29.813 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:30 smithi017 conmon[82019]: audit 2023-12-06T04:11:28.354015+0000 mgr.smithi017.mljnlu 2023-12-06T04:11:30.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:30 smithi017 conmon[82019]: (mgr.14180) 1043 : audit [DBG] from='client.15882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:30 smithi169 conmon[87179]: audit 2023-12-06T04:11:28.354015+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:11:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:30 smithi169 conmon[87179]: 1043 : audit [DBG] from='client.15882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:31 smithi169 conmon[87179]: cluster 2023-12-06T04:11:30.011769+0000 mgr.smithi017.mljnlu (mgr.14180) 1044 2023-12-06T04:11:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:31 smithi169 conmon[87179]: : 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-12-06T04:11:31.543 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:31.543 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:31.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:31 smithi017 conmon[82019]: cluster 2023-12-06T04:11:30.011769+0000 2023-12-06T04:11:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:31 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1044 : 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-12-06T04:11:32.075 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:33.076 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:33 smithi169 conmon[87179]: audit 2023-12-06T04:11:31.536988+0000 mgr.smithi017.mljnlu (mgr.14180) 1045 : audit [DBG] 2023-12-06T04:11:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:33 smithi169 conmon[87179]: from='client.15886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:33 smithi169 conmon[87179]: cluster 2023-12-06T04:11:32.012586+0000 mgr.smithi017.mljnlu (mgr.14180) 1046 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:33.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:33 smithi017 conmon[82019]: audit 2023-12-06T04:11:31.536988+0000 mgr.smithi017.mljnlu (mgr.14180) 1045 : audit [DBG] from='client.15886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:33.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:33 smithi017 conmon[82019]: cluster 2023-12-06T04:11:32.012586+0000 mgr.smithi017.mljnlu (mgr.14180) 1046 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:34.806 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:34.807 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:35.237 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:34 smithi017 conmon[82019]: cluster 2023-12-06T04:11:34.013451+0000 2023-12-06T04:11:35.238 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:34 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1047 : cluster [DBG] pgmap v686: 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-12-06T04:11:35.240 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:34 smithi169 conmon[87179]: cluster 2023-12-06T04:11:34.013451+0000 mgr.smithi017.mljnlu (mgr.14180) 1047 : cluster [DBG] 2023-12-06T04:11:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:34 smithi169 conmon[87179]: pgmap v686: 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-12-06T04:11:36.242 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:36.249 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:35 smithi169 conmon[87179]: audit 2023-12-06T04:11:34.802377+0000 mgr.smithi017.mljnlu (mgr.14180) 1048 : audit 2023-12-06T04:11:36.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:35 smithi169 conmon[87179]: [DBG] from='client.15890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:36.272 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:35 smithi017 conmon[82019]: audit 2023-12-06T04:11:34.802377+0000 mgr.smithi017.mljnlu (mgr.14180) 1048 : audit [DBG] from='client.15890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:37.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:36 smithi017 conmon[82019]: cluster 2023-12-06T04:11:36.013976+0000 mgr.smithi017.mljnlu (mgr.14180) 1049 : 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-12-06T04:11:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:36 smithi169 conmon[87179]: cluster 2023-12-06T04:11:36.013976+0000 mgr.smithi017.mljnlu (mgr.14180) 1049 : cluster 2023-12-06T04:11:37.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:36 smithi169 conmon[87179]: [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-12-06T04:11:38.090 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:38.090 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:38.505 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:39 smithi169 conmon[87179]: cluster 2023-12-06T04:11:38.014644+0000 mgr.smithi017.mljnlu (mgr.14180) 1050 : cluster [DBG] 2023-12-06T04:11:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:39 smithi169 conmon[87179]: 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-12-06T04:11:39.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:39 smithi169 conmon[87179]: audit 2023-12-06T04:11:38.085504+0000 mgr.smithi017.mljnlu (mgr.14180) 1051 : audit [DBG] from='client.15894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:39.506 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:39.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:39 smithi017 conmon[82019]: cluster 2023-12-06T04:11:38.014644+0000 mgr.smithi017.mljnlu (mgr.14180) 1050 : 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-12-06T04:11:39.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:39 smithi017 conmon[82019]: audit 2023-12-06T04:11:38.085504+0000 mgr.smithi017.mljnlu (mgr.14180) 1051 : audit [DBG] from='client.15894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:41.235 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:41.235 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:41.261 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:41 smithi017 conmon[82019]: cluster 2023-12-06T04:11:40.015185+0000 mgr.smithi017.mljnlu (mgr.14180) 1052 : 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-12-06T04:11:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:41 smithi169 conmon[87179]: cluster 2023-12-06T04:11:40.015185+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:11:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:41 smithi169 conmon[87179]: 1052 : 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-12-06T04:11:41.864 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:42.865 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:43 smithi017 conmon[82019]: audit 2023-12-06T04:11:41.231152+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:11:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:43 smithi017 conmon[82019]: .14180) 1053 : audit [DBG] from='client.15898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:43 smithi017 conmon[82019]: cluster 2023-12-06T04:11:42.016046+0000 mgr.smithi017.mljnlu (mgr.14180) 1054 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:43 smithi169 conmon[87179]: audit 2023-12-06T04:11:41.231152+0000 mgr.smithi017.mljnlu (mgr.14180) 1053 : audit 2023-12-06T04:11:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:43 smithi169 conmon[87179]: [DBG] from='client.15898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:43 smithi169 conmon[87179]: cluster 2023-12-06T04:11:42.016046+0000 mgr.smithi017.mljnlu (mgr.14180) 1054 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:44.547 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:44.548 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:45.015 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:44 smithi169 conmon[87179]: cluster 2023-12-06T04:11:44.016757+0000 mgr.smithi017.mljnlu (mgr.14180) 1055 : cluster [DBG] 2023-12-06T04:11:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:44 smithi169 conmon[87179]: pgmap v691: 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-12-06T04:11:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:44 smithi017 conmon[82019]: cluster 2023-12-06T04:11:44.016757+0000 mgr.smithi017.mljnlu (mgr.14180) 1055 : cluster [DBG] pgmap v691: 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-12-06T04:11:46.016 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:45 smithi169 conmon[87179]: audit 2023-12-06T04:11:44.543240+0000 mgr.smithi017.mljnlu (mgr.14180) 1056 2023-12-06T04:11:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:45 smithi169 conmon[87179]: : audit [DBG] from='client.15902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:45 smithi017 conmon[82019]: audit 2023-12-06T04:11:44.543240+0000 mgr.smithi017.mljnlu (mgr.14180) 1056 : audit [DBG] from='client.15902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:47.129 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:46 smithi017 conmon[82019]: cluster 2023-12-06T04:11:46.017468+0000 mgr.smithi017.mljnlu (mgr.14180) 1057 : 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-12-06T04:11:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:46 smithi169 conmon[87179]: cluster 2023-12-06T04:11:46.017468+0000 mgr.smithi017.mljnlu (mgr.14180) 1057 : cluster 2023-12-06T04:11:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:46 smithi169 conmon[87179]: [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-12-06T04:11:47.840 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:47.841 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:48.365 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:49.365 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:49.396 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:49 smithi017 conmon[82019]: audit 2023-12-06T04:11:47.835924+0000 mgr.smithi017.mljnlu (mgr.14180) 1058 : audit [DBG] from='client.15906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:49.396 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:49 smithi017 conmon[82019]: cluster 2023-12-06T04:11:48.018302+0000 mgr.smithi017.mljnlu (mgr.14180) 1059 : 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-12-06T04:11:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:49 smithi169 conmon[87179]: audit 2023-12-06T04:11:47.835924+0000 mgr.smithi017.mljnlu (mgr.14180) 1058 : audit 2023-12-06T04:11:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:49 smithi169 conmon[87179]: [DBG] from='client.15906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:49 smithi169 conmon[87179]: cluster 2023-12-06T04:11:48.018302+0000 mgr.smithi017.mljnlu (mgr.14180) 1059 : 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-12-06T04:11:51.093 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:51.094 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:51 smithi169 conmon[87179]: cluster 2023-12-06T04:11:50.018839+0000 mgr.smithi017.mljnlu (mgr.14180) 1060 : 2023-12-06T04:11:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:51 smithi169 conmon[87179]: 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-12-06T04:11:51.528 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:51 smithi017 conmon[82019]: cluster 2023-12-06T04:11:50.018839+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:11:51.529 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:51 smithi017 conmon[82019]: 1060 : 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-12-06T04:11:51.530 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:52 smithi169 conmon[87179]: audit 2023-12-06T04:11:51.088352+0000 mgr.smithi017.mljnlu (mgr.14180) 1061 : audit [DBG] from='client.15910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:52.530 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:52.561 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:52 smithi017 conmon[82019]: audit 2023-12-06T04:11:51.088352+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:11:52.562 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:52 smithi017 conmon[82019]: mgr.14180) 1061 : audit [DBG] from='client.15910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:53 smithi017 conmon[82019]: cluster 2023-12-06T04:11:52.019460+0000 mgr.smithi017.mljnlu (mgr.14180) 1062 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:53 smithi169 conmon[87179]: cluster 2023-12-06T04:11:52.019460+0000 mgr.smithi017.mljnlu (mgr.14180) 1062 : cluster 2023-12-06T04:11:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:53 smithi169 conmon[87179]: [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:54.250 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:54.251 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:54.691 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:54 smithi017 conmon[82019]: cluster 2023-12-06T04:11:54.020183+0000 mgr.smithi017.mljnlu 2023-12-06T04:11:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:54 smithi017 conmon[82019]: (mgr.14180) 1063 : cluster [DBG] pgmap v696: 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-12-06T04:11:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:54 smithi169 conmon[87179]: cluster 2023-12-06T04:11:54.020183+0000 mgr.smithi017.mljnlu (mgr.14180) 1063 : cluster 2023-12-06T04:11:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:54 smithi169 conmon[87179]: [DBG] pgmap v696: 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-12-06T04:11:55.692 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:56.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:55 smithi017 conmon[82019]: audit 2023-12-06T04:11:54.246063+0000 mgr.smithi017.mljnlu (mgr.14180) 1064 : audit [DBG] from='client.15914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:56.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:55 smithi017 conmon[82019]: 2023-12-06T04:11:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:55 smithi169 conmon[87179]: audit 2023-12-06T04:11:54.246063+0000 mgr.smithi017.mljnlu (mgr.14180) 1064 : audit 2023-12-06T04:11:56.251 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:55 smithi169 conmon[87179]: [DBG] from='client.15914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:56 smithi169 conmon[87179]: cluster 2023-12-06T04:11:56.020701+0000 mgr.smithi017.mljnlu (mgr.14180) 1065 : cluster [DBG] 2023-12-06T04:11:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:56 smithi169 conmon[87179]: 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-12-06T04:11:57.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:56 smithi017 conmon[82019]: cluster 2023-12-06T04:11:56.020701+0000 mgr.smithi017.mljnlu (mgr.14180) 1065 : 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-12-06T04:11:57.413 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:11:57.414 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:11:57.853 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:11:58.855 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:11:59.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:59 smithi017 conmon[82019]: audit 2023-12-06T04:11:57. 2023-12-06T04:11:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:59 smithi017 conmon[82019]: 409353+0000 mgr.smithi017.mljnlu (mgr.14180) 1066 : audit [DBG] from='client.15918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:59.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:11:59 smithi017 conmon[82019]: cluster 2023-12-06T04:11:58.021559+0000 mgr.smithi017.mljnlu (mgr.14180) 1067 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:11:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:59 smithi169 conmon[87179]: audit 2023-12-06T04:11:57.409353+0000 mgr.smithi017.mljnlu (mgr.14180) 1066 : audit 2023-12-06T04:11:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:59 smithi169 conmon[87179]: [DBG] from='client.15918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:11:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:11:59 smithi169 conmon[87179]: cluster 2023-12-06T04:11:58.021559+0000 mgr.smithi017.mljnlu (mgr.14180) 1067 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:00.577 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:00.577 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:01.011 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:01.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:01 smithi017 conmon[82019]: cluster 2023-12-06T04:12:00.022462+0000 mgr.smithi017.mljnlu (mgr.14180) 1068 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:01 smithi169 conmon[87179]: cluster 2023-12-06T04:12:00.022462+0000 mgr.smithi017.mljnlu (mgr.14180) 1068 2023-12-06T04:12:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:01 smithi169 conmon[87179]: : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:02.013 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:02 smithi017 conmon[82019]: audit 2023-12-06T04:12:00.573172+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:12:02.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:02 smithi017 conmon[82019]: 1069 : audit [DBG] from='client.15922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:02.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:02 smithi169 conmon[87179]: audit 2023-12-06T04:12:00.573172+0000 mgr.smithi017.mljnlu (mgr.14180) 1069 : audit [DBG] from='client.15922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:03.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:03 smithi017 conmon[82019]: cluster 2023-12-06T04:12:02.023171+0000 mgr.smithi017.mljnlu 2023-12-06T04:12:03.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:03 smithi017 conmon[82019]: (mgr.14180) 1070 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:03 smithi169 conmon[87179]: cluster 2023-12-06T04:12:02.023171+0000 mgr.smithi017.mljnlu (mgr.14180) 1070 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:03.739 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:03.739 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:04.177 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:05.178 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:05.210 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:04 smithi017 conmon[82019]: audit 2023-12-06T04:12:03.734922+0000 mgr.smithi017.mljnlu (mgr.14180) 1071 : audit [DBG] from='client.15926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:05.210 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:04 smithi017 conmon[82019]: cluster 2023-12-06T04:12:04.024052+0000 mgr.smithi017.mljnlu (mgr.14180) 1072 : cluster [DBG] pgmap v701: 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-12-06T04:12:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:04 smithi169 conmon[87179]: audit 2023-12-06T04:12:03.734922+0000 mgr.smithi017.mljnlu (mgr.14180) 1071 : audit [DBG] from='client.15926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:04 smithi169 conmon[87179]: cluster 2023-12-06T04:12:04.024052+0000 mgr.smithi017.mljnlu (mgr.14180) 1072 : cluster [DBG] pgmap v701: 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-12-06T04:12:06.915 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:06.915 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:07.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:07 smithi017 conmon[82019]: cluster 2023-12-06T04:12:06.024503+0000 mgr.smithi017.mljnlu (mgr.14180) 1073 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:07.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:07.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:07 smithi169 conmon[87179]: cluster 2023-12-06T04:12:06.024503+0000 mgr.smithi017.mljnlu (mgr.14180) 1073 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:08.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:08 smithi017 conmon[82019]: audit 2023-12-06T04:12:06.910677+0000 mgr.smithi017.mljnlu (mgr.14180) 1074 : audit [DBG] from='client.15930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:08.345 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:08.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:08 smithi169 conmon[87179]: audit 2023-12-06T04:12:06.910677+0000 mgr.smithi017.mljnlu (mgr.14180) 1074 : audit [DBG] from='client.15930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:08.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:08 smithi169 conmon[87179]: 2023-12-06T04:12:09.200 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:09 smithi017 conmon[82019]: cluster 2023-12-06T04:12:08.025367+0000 mgr.smithi017.mljnlu (mgr.14180) 1075 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:09 smithi169 conmon[87179]: cluster 2023-12-06T04:12:08.025367+0000 mgr.smithi017.mljnlu (mgr.14180) 1075 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:10.056 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:10.056 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:10.497 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:11.498 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:11 smithi169 conmon[87179]: cluster 2023-12-06T04:12:10.025931+0000 mgr.smithi017.mljnlu (mgr.14180) 1076 : cluster [DBG] 2023-12-06T04:12:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:11 smithi169 conmon[87179]: 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-12-06T04:12:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:11 smithi169 conmon[87179]: audit 2023-12-06T04:12:10.051510+0000 mgr.smithi017.mljnlu (mgr.14180) 1077 : audit [DBG] from='client.15934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:11.531 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:11 smithi017 conmon[82019]: cluster 2023-12-06T04:12:10.025931+0000 mgr.smithi017.mljnlu (mgr.14180) 1076 : 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-12-06T04:12:11.531 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:11 smithi017 conmon[82019]: audit 2023-12-06T04:12:10.051510+0000 mgr.smithi017.mljnlu (mgr.14180) 1077 : audit [DBG] from='client.15934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:13.234 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:13.234 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:13.409 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:13 smithi017 conmon[82019]: cluster 2023-12-06T04:12:12.026493+0000 mgr.smithi017.mljnlu 2023-12-06T04:12:13.409 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:13 smithi017 conmon[82019]: (mgr.14180) 1078 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:13 smithi169 conmon[87179]: cluster 2023-12-06T04:12:12.026493+0000 mgr.smithi017.mljnlu (mgr.14180) 1078 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:13.660 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:14.662 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:15.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:14 smithi017 conmon[82019]: audit 2023-12-06T04:12:13.228931+0000 mgr.smithi017.mljnlu (mgr.14180) 1079 2023-12-06T04:12:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:14 smithi017 conmon[82019]: : audit [DBG] from='client.15938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:15.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:14 smithi017 conmon[82019]: cluster 2023-12-06T04:12:14.027405+0000 mgr.smithi017.mljnlu (mgr.14180) 1080 : cluster [DBG] pgmap v706: 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-12-06T04:12:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:14 smithi169 conmon[87179]: audit 2023-12-06T04:12:13.228931+0000 mgr.smithi017.mljnlu (mgr.14180) 1079 : audit [DBG] 2023-12-06T04:12:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:14 smithi169 conmon[87179]: from='client.15938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:14 smithi169 conmon[87179]: cluster 2023-12-06T04:12:14.027405+0000 mgr.smithi017.mljnlu (mgr.14180) 1080 : cluster [DBG] pgmap v706: 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-12-06T04:12:16.486 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:16.486 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:16.926 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:17.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:17 smithi017 conmon[82019]: cluster 2023-12-06T04:12:16.027890+0000 mgr.smithi017.mljnlu (mgr.14180) 1081 : 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-12-06T04:12:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:17 smithi169 conmon[87179]: cluster 2023-12-06T04:12:16.027890+0000 mgr.smithi017.mljnlu (mgr.14180) 1081 : 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-12-06T04:12:17.928 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:18.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:18 smithi017 conmon[82019]: audit 2023-12-06T04:12: 2023-12-06T04:12:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:18 smithi017 conmon[82019]: 16.481599+0000 mgr.smithi017.mljnlu (mgr.14180) 1082 : audit [DBG] from='client.15942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:18 smithi169 conmon[87179]: audit 2023-12-06T04:12:16.481599+0000 mgr.smithi017.mljnlu (mgr.14180) 1082 : audit [DBG] from='client.15942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:19 smithi169 conmon[87179]: cluster 2023-12-06T04:12:18.028590+0000 mgr.smithi017.mljnlu (mgr.14180) 1083 : 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-12-06T04:12:19.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:19 smithi017 conmon[82019]: cluster 2023-12-06T04:12:18.028590+0000 mgr.smithi017.mljnlu (mgr.14180) 1083 : 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-12-06T04:12:19.628 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:19.628 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:20.082 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:21.083 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:21 smithi169 conmon[87179]: audit 2023-12-06T04:12:19.623687+0000 mgr.smithi017.mljnlu (mgr.14180) 1084 : audit 2023-12-06T04:12:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:21 smithi169 conmon[87179]: [DBG] from='client.15946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:21 smithi169 conmon[87179]: cluster 2023-12-06T04:12:20.029172+0000 mgr.smithi017.mljnlu (mgr.14180) 1085 : 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-12-06T04:12:21.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:21 smithi017 conmon[82019]: audit 2023-12-06T04:12:19.623687+0000 mgr.smithi017.mljnlu (mgr.14180) 1084 : audit [DBG] from='client.15946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:21.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:21 smithi017 conmon[82019]: cluster 2023-12-06T04:12:20.029172+0000 mgr.smithi017.mljnlu (mgr.14180) 1085 : 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-12-06T04:12:22.792 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:22.793 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:23.240 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:23.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:23 smithi169 conmon[87179]: cluster 2023-12-06T04:12:22.029921+0000 mgr.smithi017.mljnlu (mgr.14180) 1086 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:23.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:23 smithi017 conmon[82019]: cluster 2023-12-06T04:12:22.029921+0000 mgr.smithi017.mljnlu (mgr.14180) 1086 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:24.241 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:24.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:24 smithi169 conmon[87179]: audit 2023-12-06T04:12:22.788154+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:12:24.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:24 smithi169 conmon[87179]: .14180) 1087 : audit [DBG] from='client.15950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:24.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:24 smithi017 conmon[82019]: audit 2023-12-06T04:12:22.788154+0000 2023-12-06T04:12:24.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:24 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1087 : audit [DBG] from='client.15950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:25.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:25 smithi169 conmon[87179]: cluster 2023-12-06T04:12:24.030755+0000 mgr.smithi017.mljnlu (mgr.14180) 1088 : cluster [DBG] pgmap v711: 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-12-06T04:12:25.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:25 smithi017 conmon[82019]: cluster 2023-12-06T04:12:24.030755+0000 mgr.smithi017.mljnlu (mgr.14180) 1088 : cluster [DBG] pgmap v711: 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-12-06T04:12:25.944 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:25.944 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:26.389 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:27.391 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:27.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:27 smithi017 conmon[82019]: audit 2023-12-06T04:12:25.939779+0000 mgr.smithi017.mljnlu (mgr.14180) 1089 : audit [DBG] from='client.15954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:27.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:27 smithi017 conmon[82019]: cluster 2023-12-06T04:12:26.031276+0000 mgr.smithi017.mljnlu (mgr.14180) 1090 : 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-12-06T04:12:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:27 smithi169 conmon[87179]: audit 2023-12-06T04:12:25.939779+0000 mgr.smithi017.mljnlu (mgr.14180) 1089 : audit [DBG] from='client.15954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:27 smithi169 conmon[87179]: cluster 2023-12-06T04:12:26.031276+0000 mgr.smithi017.mljnlu (mgr.14180) 1090 : 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-12-06T04:12:29.125 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:29.125 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:29 smithi169 conmon[87179]: cluster 2023-12-06T04:12:28.032117+0000 mgr.smithi017.mljnlu (mgr.14180) 1091 : 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-12-06T04:12:29.521 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:29 smithi017 conmon[82019]: cluster 2023-12-06T04:12:28.032117+0000 mgr.smithi017.mljnlu (mgr.14180) 1091 : 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-12-06T04:12:29.555 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:30 smithi169 conmon[87179]: audit 2023-12-06T04:12:29.120707+0000 mgr.smithi017.mljnlu (mgr.14180) 1092 : audit [DBG] from='client.15958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:30.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:30 smithi169 conmon[87179]: 2023-12-06T04:12:30.555 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:30.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:30 smithi017 conmon[82019]: audit 2023-12-06T04:12:29.120707+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:12:30.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:30 smithi017 conmon[82019]: ) 1092 : audit [DBG] from='client.15958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:31.423 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:31 smithi017 conmon[82019]: cluster 2023-12-06T04:12:30.032797 2023-12-06T04:12:31.423 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:31 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 1093 : 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-12-06T04:12:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:31 smithi169 conmon[87179]: cluster 2023-12-06T04:12:30.032797+0000 mgr.smithi017.mljnlu (mgr.14180) 1093 : cluster 2023-12-06T04:12:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:31 smithi169 conmon[87179]: [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-12-06T04:12:32.285 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:32.285 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:32.722 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:33 smithi169 conmon[87179]: cluster 2023-12-06T04:12:32.033362+0000 mgr.smithi017.mljnlu (mgr.14180) 1094 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:33 smithi169 conmon[87179]: 2023-12-06T04:12:33.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:33 smithi017 conmon[82019]: cluster 2023-12-06T04:12:32.033362+0000 mgr.smithi017.mljnlu (mgr.14180) 1094 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:33.723 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:34.447 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:34 smithi017 conmon[82019]: audit 2023-12-06T04:12:32.280978+0000 2023-12-06T04:12:34.447 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:34 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1095 : audit [DBG] from='client.15962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:34 smithi169 conmon[87179]: audit 2023-12-06T04:12:32.280978+0000 mgr.smithi017.mljnlu (mgr.14180) 1095 : audit [DBG] from='client.15962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:35.449 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:35.450 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:35.475 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:35 smithi017 conmon[82019]: cluster 2023-12-06T04:12:34.034325+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:12:35.475 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:35 smithi017 conmon[82019]: mgr.14180) 1096 : cluster [DBG] pgmap v716: 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-12-06T04:12:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:35 smithi169 conmon[87179]: cluster 2023-12-06T04:12:34.034325+0000 mgr.smithi017.mljnlu (mgr.14180) 1096 : cluster [DBG] pgmap v716: 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-12-06T04:12:35.874 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:36.875 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:37.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:37 smithi017 conmon[82019]: audit 2023-12-06T04:12:35.444914+0000 mgr.smithi017.mljnlu (mgr.14180) 1097 : audit [DBG] from='client.15966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:37.322 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:37 smithi017 conmon[82019]: cluster 2023-12-06T04:12:36.034968+0000 mgr.smithi017.mljnlu (mgr.14180) 1098 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2023-12-06T04:12:37.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:37 smithi169 conmon[87179]: audit 2023-12-06T04:12:35.444914+0000 mgr.smithi017.mljnlu (mgr.14180) 1097 : audit [DBG] from='client.15966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:37.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:37 smithi169 conmon[87179]: 2023-12-06T04:12:37.505 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:37 smithi169 conmon[87179]: cluster 2023-12-06T04:12:36.034968+0000 mgr.smithi017.mljnlu (mgr.14180) 1098 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2023-12-06T04:12:38.583 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:38.584 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:39.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:39.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:39 smithi017 conmon[82019]: cluster 2023-12-06T04:12:38.035610+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:12:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:39 smithi017 conmon[82019]: mgr.14180) 1099 : cluster [DBG] pgmap v718: 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-12-06T04:12:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:39 smithi169 conmon[87179]: cluster 2023-12-06T04:12:38.035610+0000 mgr.smithi017.mljnlu (mgr.14180) 1099 : cluster [DBG] pgmap v718: 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-12-06T04:12:40.029 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:40.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:40 smithi017 conmon[82019]: audit 2023-12-06T04:12:38.578926+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:12:40.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:40 smithi017 conmon[82019]: 14180) 1100 : audit [DBG] from='client.15970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:40.499 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:40 smithi169 conmon[87179]: audit 2023-12-06T04:12:38.578926+0000 mgr.smithi017.mljnlu (mgr.14180) 1100 : audit [DBG] from='client.15970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:41.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:41 smithi017 conmon[82019]: cluster 2023-12-06T04:12:40.036324+0000 mgr.smithi017.mljnlu (mgr.14180) 1101 : cluster [DBG] pgmap v719: 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-12-06T04:12:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:41 smithi169 conmon[87179]: cluster 2023-12-06T04:12:40.036324+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:12:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:41 smithi169 conmon[87179]: mgr.14180) 1101 : cluster [DBG] pgmap v719: 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-12-06T04:12:41.847 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:41.847 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:42.291 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:43.292 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:43.499 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:43 smithi169 conmon[87179]: audit 2023-12-06T04:12:41.841224+0000 mgr.smithi017.mljnlu (mgr.14180) 1102 : audit [DBG] from='client.15974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:43 smithi169 conmon[87179]: cluster 2023-12-06T04:12:42.036915+0000 mgr.smithi017.mljnlu (mgr.14180) 1103 : cluster [DBG] pgmap v720: 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-12-06T04:12:43.571 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:43 smithi017 conmon[82019]: audit 2023-12-06T04:12:41 2023-12-06T04:12:43.572 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:43 smithi017 conmon[82019]: .841224+0000 mgr.smithi017.mljnlu (mgr.14180) 1102 : audit [DBG] from='client.15974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:43.572 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:43 smithi017 conmon[82019]: cluster 2023-12-06T04:12:42.036915+0000 mgr.smithi017.mljnlu (mgr.14180) 1103 : cluster [DBG] pgmap v720: 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-12-06T04:12:45.018 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:45.019 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:45.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:44 smithi169 conmon[87179]: cluster 2023-12-06T04:12:44.037607+0000 mgr.smithi017.mljnlu (mgr.14180) 1104 : cluster [DBG] pgmap v721: 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-12-06T04:12:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:44 smithi017 conmon[82019]: cluster 2023-12-06T04:12:44.037607+0000 mgr.smithi017.mljnlu (mgr.14180) 1104 : cluster [DBG] pgmap v721: 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-12-06T04:12:45.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:46.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:45 smithi169 conmon[87179]: audit 2023-12-06T04:12:45.014519+0000 mgr.smithi017.mljnlu (mgr.14180) 1105 : audit [DBG] from='client.15978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:46.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:45 smithi017 conmon[82019]: audit 2023-12-06T04:12:45.014519+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:12:46.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:45 smithi017 conmon[82019]: .14180) 1105 : audit [DBG] from='client.15978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:46.657 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:46 smithi017 conmon[82019]: cluster 2023-12-06T04:12:46.038499+0000 mgr.smithi017.mljnlu (mgr.14180) 1106 : cluster [DBG] 2023-12-06T04:12:47.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:46 smithi017 conmon[82019]: pgmap v722: 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-12-06T04:12:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:46 smithi169 conmon[87179]: cluster 2023-12-06T04:12:46.038499+0000 mgr.smithi017.mljnlu (mgr.14180) 1106 : cluster 2023-12-06T04:12:47.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:46 smithi169 conmon[87179]: [DBG] pgmap v722: 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-12-06T04:12:48.379 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:48.379 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:48.807 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:49 smithi169 conmon[87179]: cluster 2023-12-06T04:12:48.039358+0000 mgr.smithi017.mljnlu (mgr.14180) 1107 : cluster [DBG] pgmap v723: 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-12-06T04:12:49.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:49 smithi017 conmon[82019]: cluster 2023-12-06T04:12:48.039358+0000 mgr.smithi017.mljnlu (mgr.14180) 1107 : cluster [DBG] pgmap v723: 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-12-06T04:12:49.808 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:50.353 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:50 smithi017 conmon[82019]: audit 2023-12-06T04:12:48.374594+0000 mgr.smithi017.mljnlu (mgr.14180) 1108 : audit [DBG] from='client.15982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:50.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:50 smithi169 conmon[87179]: audit 2023-12-06T04:12:48.374594+0000 mgr.smithi017.mljnlu (mgr.14180) 1108 : audit [DBG] from='client.15982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:51 smithi169 conmon[87179]: cluster 2023-12-06T04:12:50.039933+0000 mgr.smithi017.mljnlu (mgr.14180) 1109 : cluster [DBG] 2023-12-06T04:12:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:51 smithi169 conmon[87179]: 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-12-06T04:12:51.541 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:51.542 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:51.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:51 smithi017 conmon[82019]: cluster 2023-12-06T04:12:50.039933+0000 mgr.smithi017.mljnlu 2023-12-06T04:12:51.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:51 smithi017 conmon[82019]: (mgr.14180) 1109 : 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-12-06T04:12:51.974 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:52.975 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:53.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:53 smithi017 conmon[82019]: audit 2023-12-06T04:12:51.537160+0000 mgr.smithi017.mljnlu (mgr.14180) 1110 : audit [DBG] from='client.15986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:53.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:53 smithi017 conmon[82019]: cluster 2023-12-06T04:12:52.040585+0000 mgr.smithi017.mljnlu (mgr.14180) 1111 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:53 smithi169 conmon[87179]: audit 2023-12-06T04:12:51.537160+0000 mgr.smithi017.mljnlu (mgr.14180) 1110 : audit [DBG] from='client.15986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:53 smithi169 conmon[87179]: 2023-12-06T04:12:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:53 smithi169 conmon[87179]: cluster 2023-12-06T04:12:52.040585+0000 mgr.smithi017.mljnlu (mgr.14180) 1111 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:12:54.717 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:54.717 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:55.066 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:54 smithi017 conmon[82019]: cluster 2023-12-06T04:12:54.041335+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:12:55.066 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:54 smithi017 conmon[82019]: .14180) 1112 : cluster [DBG] pgmap v726: 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-12-06T04:12:55.128 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:54 smithi169 conmon[87179]: cluster 2023-12-06T04:12:54.041335+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:12:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:54 smithi169 conmon[87179]: 14180) 1112 : cluster [DBG] pgmap v726: 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-12-06T04:12:56.129 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:56.160 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:55 smithi017 conmon[82019]: audit 2023-12-06T04:12:54.712659+0000 mgr.smithi017.mljnlu (mgr.14180) 1113 : audit [DBG] from='client.15990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:55 smithi169 conmon[87179]: audit 2023-12-06T04:12:54.712659+0000 mgr.smithi017.mljnlu (mgr.14180) 1113 : audit [DBG] from='client.15990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:55 smithi169 conmon[87179]: 2023-12-06T04:12:57.044 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:56 smithi017 conmon[82019]: cluster 2023-12-06T04:12:56.042037+0000 mgr.smithi017.mljnlu (mgr.14180) 1114 : cluster 2023-12-06T04:12:57.044 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:56 smithi017 conmon[82019]: [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-12-06T04:12:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:56 smithi169 conmon[87179]: cluster 2023-12-06T04:12:56.042037+0000 mgr.smithi017.mljnlu (mgr.14180) 1114 : 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-12-06T04:12:57.860 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:12:57.860 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:12:58.392 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:12:59.393 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:12:59.423 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:59 smithi017 conmon[82019]: audit 2023-12-06T04:12:57.856086+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:12:59.423 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:59 smithi017 conmon[82019]: mgr.14180) 1115 : audit [DBG] from='client.15994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:59.423 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:12:59 smithi017 conmon[82019]: cluster 2023-12-06T04:12:58.042715+0000 mgr.smithi017.mljnlu (mgr.14180) 1116 : 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-12-06T04:12:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:59 smithi169 conmon[87179]: audit 2023-12-06T04:12:57.856086+0000 mgr.smithi017.mljnlu (mgr.14180) 1115 : audit [DBG] from='client.15994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:12:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:59 smithi169 conmon[87179]: 2023-12-06T04:12:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:12:59 smithi169 conmon[87179]: cluster 2023-12-06T04:12:58.042715+0000 mgr.smithi017.mljnlu (mgr.14180) 1116 : 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-12-06T04:13:01.118 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:01.118 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:01 smithi169 conmon[87179]: cluster 2023-12-06T04:13:00.043256+0000 mgr.smithi017.mljnlu (mgr.14180) 1117 : 2023-12-06T04:13:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:01 smithi169 conmon[87179]: 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-12-06T04:13:01.522 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:01 smithi017 conmon[82019]: cluster 2023-12-06T04:13:00.043256+0000 mgr.smithi017.mljnlu (mgr.14180) 1117 : 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-12-06T04:13:01.555 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:02.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:02 smithi169 conmon[87179]: audit 2023-12-06T04:13:01.112797+0000 mgr.smithi017.mljnlu (mgr.14180) 1118 : audit [DBG] from='client.15998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:02.556 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:02.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:02 smithi017 conmon[82019]: audit 2023-12-06T04:13:01.112797+0000 mgr.smithi017.mljnlu (mgr.14180) 1118 : audit 2023-12-06T04:13:02.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:02 smithi017 conmon[82019]: [DBG] from='client.15998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:03.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:03 smithi017 conmon[82019]: cluster 2023-12-06T04:13:02.044084+0000 mgr.smithi017.mljnlu (mgr.14180) 1119 : cluster 2023-12-06T04:13:03.428 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:03 smithi017 conmon[82019]: [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:03.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:03 smithi169 conmon[87179]: cluster 2023-12-06T04:13:02.044084+0000 mgr.smithi017.mljnlu (mgr.14180) 1119 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:04.302 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:04.303 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:04.919 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:04 smithi017 conmon[82019]: cluster 2023-12-06T04:13:04.044798+0000 mgr.smithi017.mljnlu (mgr.14180) 1120 : cluster [DBG] pgmap v731: 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-12-06T04:13:04.920 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:04 smithi169 conmon[87179]: cluster 2023-12-06T04:13:04.044798+0000 mgr.smithi017.mljnlu (mgr.14180) 1120 : cluster [DBG] pgmap v731: 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-12-06T04:13:05.922 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:05 smithi169 conmon[87179]: audit 2023-12-06T04:13:04.297324+0000 mgr.smithi017.mljnlu (mgr.14180) 1121 : audit [DBG] from='client.16002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:06.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:05 smithi017 conmon[82019]: audit 2023-12-06T04:13:04.297324+0000 mgr.smithi017.mljnlu (mgr.14180) 1121 : 2023-12-06T04:13:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:05 smithi017 conmon[82019]: audit [DBG] from='client.16002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:07.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:06 smithi017 conmon[82019]: cluster 2023-12-06T04:13:06.045286+0000 mgr.smithi017.mljnlu (mgr.14180) 1122 : 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-12-06T04:13:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:06 smithi169 conmon[87179]: cluster 2023-12-06T04:13:06.045286+0000 mgr.smithi017.mljnlu (mgr.14180) 1122 : 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-12-06T04:13:07.655 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:07.655 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:08.087 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:09.089 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:09 smithi169 conmon[87179]: audit 2023-12-06T04:13:07.651110+0000 mgr.smithi017.mljnlu (mgr.14180) 1123 : audit [DBG] from='client.16006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:09 smithi169 conmon[87179]: cluster 2023-12-06T04:13:08.045931+0000 mgr.smithi017.mljnlu (mgr.14180) 1124 : 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-12-06T04:13:09.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:09 smithi017 conmon[82019]: audit 2023-12-06T04:13:07.651110+0000 mgr.smithi017.mljnlu (mgr.14180) 1123 : audit [DBG] 2023-12-06T04:13:09.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:09 smithi017 conmon[82019]: from='client.16006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:09.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:09 smithi017 conmon[82019]: cluster 2023-12-06T04:13:08.045931+0000 mgr.smithi017.mljnlu (mgr.14180) 1124 : 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-12-06T04:13:10.799 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:10.800 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:11.242 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:11 smithi169 conmon[87179]: cluster 2023-12-06T04:13:10.046482+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:13:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:11 smithi169 conmon[87179]: 1125 : 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-12-06T04:13:11.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:11 smithi017 conmon[82019]: cluster 2023-12-06T04:13:10.046482+0000 mgr.smithi017.mljnlu (mgr.14180) 1125 : 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-12-06T04:13:12.246 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:12 smithi169 conmon[87179]: audit 2023-12-06T04:13:10.794751+0000 mgr.smithi017.mljnlu (mgr.14180) 1126 : audit [DBG] from='client.16010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:12 smithi017 conmon[82019]: audit 2023-12-06T04:13:10.794751+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:13:12.570 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:12 smithi017 conmon[82019]: ) 1126 : audit [DBG] from='client.16010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:13 smithi169 conmon[87179]: cluster 2023-12-06T04:13:12.047314+0000 mgr.smithi017.mljnlu (mgr.14180) 1127 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:13.545 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:13 smithi017 conmon[82019]: cluster 2023-12-06T04:13:12.047314+0000 mgr.smithi017.mljnlu 2023-12-06T04:13:13.545 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:13 smithi017 conmon[82019]: (mgr.14180) 1127 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:13.951 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:13.952 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:14.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:14 smithi169 conmon[87179]: audit 2023-12-06T04:13:13.947440+0000 mgr.smithi017.mljnlu (mgr.14180) 1128 : audit [DBG] 2023-12-06T04:13:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:14 smithi169 conmon[87179]: from='client.16014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:14 smithi169 conmon[87179]: cluster 2023-12-06T04:13:14.048043+0000 mgr.smithi017.mljnlu (mgr.14180) 1129 : cluster [DBG] pgmap v736: 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-12-06T04:13:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:14 smithi017 conmon[82019]: audit 2023-12-06T04:13:13.947440+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:13:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:14 smithi017 conmon[82019]: mgr.14180) 1128 : audit [DBG] from='client.16014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:14 smithi017 conmon[82019]: cluster 2023-12-06T04:13:14.048043+0000 mgr.smithi017.mljnlu (mgr.14180) 1129 : cluster [DBG] pgmap v736: 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-12-06T04:13:15.396 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:17.211 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:17.211 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:04:33.915006Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.xgftzv on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:17.416 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:17 smithi017 conmon[82019]: cluster 2023-12-06T04:13:16.048681+0000 mgr.smithi017.mljnlu (mgr.14180) 1130 : 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-12-06T04:13:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:17 smithi169 conmon[87179]: cluster 2023-12-06T04:13:16.048681+0000 mgr.smithi017.mljnlu (mgr.14180) 1130 : 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-12-06T04:13:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:17 smithi169 conmon[87179]: 2023-12-06T04:13:17.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:18 smithi017 conmon[82019]: audit 2023-12-06T04:13:17.265373+0000 mon.smithi017 (mon.0) 2023-12-06T04:13:18.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:18 smithi017 conmon[82019]: 781 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.rhslec"}]: dispatch 2023-12-06T04:13:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:18 smithi169 conmon[87179]: audit 2023-12-06T04:13:17.265373+0000 mon.smithi017 (mon.0) 781 : audit 2023-12-06T04:13:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:18 smithi169 conmon[87179]: [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi169.rhslec"}]: dispatch 2023-12-06T04:13:18.643 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: audit 2023-12-06T04:13:17.206459+0000 mgr.smithi017.mljnlu (mgr.14180) 1131 : audit [DBG] from='client.16018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: cephadm 2023-12-06T04:13:17.264897+0000 mgr.smithi017.mljnlu (mgr.14180) 1132 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.484 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.485 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: ERROR: Failed to extract uid/gid for path /va 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: r/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: cephadm 2023-12-06T04:13:17.265063+0000 mgr.smithi017.mljnlu (mgr.14180) 1133 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: cephadm 2023-12-06T04:13:17.265974+0000 mgr.smithi017.mljnlu (mgr.14180) 1134 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.486 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: cephadm 2023-12-06T04:13:17.267545+0000 mgr.smithi017.mljnlu (mgr.14180) 1135 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.xnsghe on smithi017 2023-12-06T04:13:19.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:19 smithi017 conmon[82019]: cluster 2023-12-06T04:13:18.049353+0000 mgr.smithi017.mljnlu (mgr.14180) 1136 : 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-12-06T04:13:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: audit 2023-12-06T04:13:17.206459+0000 mgr.smithi017.mljnlu (mgr.14180) 1131 : audit [DBG] from='client.16018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: cephadm 2023-12-06T04:13:17.264897+0000 mgr.smithi017.mljnlu (mgr.14180) 1132 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:13:19.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 dock 2023-12-06T04:13:19.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: er.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: cephadm 2023-12-06T04:13:17.265063+0000 mgr.smithi017.mljnlu (mgr.14180) 1133 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: cephadm 2023-12-06T04:13:17.265974+0000 mgr.smithi017.mljnlu (mgr.14180) 1134 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi169.rhslec ... 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:11:24Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:02Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:12:39Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: 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=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: cephadm 2023-12-06T04:13:17.267545+0000 mgr.smithi017.mljnlu (mgr.14180) 1135 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi017.xnsghe on smithi017 2023-12-06T04:13:19.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:19 smithi169 conmon[87179]: cluster 2023-12-06T04:13:18.049353+0000 mgr.smithi017.mljnlu (mgr.14180) 1136 : 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-12-06T04:13:20.394 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:20.394 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:20.797 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:21 smithi169 conmon[87179]: cluster 2023-12-06T04:13:20.049947+0000 mgr.smithi017.mljnlu (mgr.14180) 1137 : cluster [DBG] 2023-12-06T04:13:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:21 smithi169 conmon[87179]: 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-12-06T04:13:21.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:21 smithi017 conmon[82019]: cluster 2023-12-06T04:13:20.049947+0000 mgr.smithi017.mljnlu (mgr.14180) 1137 : 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-12-06T04:13:21.798 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:22.394 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:22 smithi017 conmon[82019]: audit 2023-12-06T04:13:20.389187+0000 mgr.smithi017.mljnlu (mgr.14180) 1138 : audit [DBG] from='client.16022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:22 smithi169 conmon[87179]: audit 2023-12-06T04:13:20.389187+0000 mgr.smithi017.mljnlu (mgr.14180) 1138 : audit [DBG] 2023-12-06T04:13:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:22 smithi169 conmon[87179]: from='client.16022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:23 smithi169 conmon[87179]: cluster 2023-12-06T04:13:22.050580+0000 mgr.smithi017.mljnlu (mgr.14180) 1139 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:23.504 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:23.504 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:23.527 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:23 smithi017 conmon[82019]: cluster 2023-12-06T04:13:22.050580+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:13:23.528 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:23 smithi017 conmon[82019]: mgr.14180) 1139 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:23.943 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:24.944 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:24 smithi169 conmon[87179]: audit 2023-12-06T04:13:23.499413+0000 mgr.smithi017.mljnlu (mgr.14180) 1140 : audit [DBG] from='client.16026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:24 smithi169 conmon[87179]: 2023-12-06T04:13:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:24 smithi169 conmon[87179]: cluster 2023-12-06T04:13:24.051392+0000 mgr.smithi017.mljnlu (mgr.14180) 1141 : cluster [DBG] pgmap v741: 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-12-06T04:13:25.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:24 smithi017 conmon[82019]: audit 2023-12-06T04:13:23.499413+0000 mgr.smithi017.mljnlu (mgr.14180) 1140 : audit [DBG] from='client.16026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:24 smithi017 conmon[82019]: cluster 2023-12-06T04:13:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:24 smithi017 conmon[82019]: 2023-12-06T04:13:24.051392+0000 mgr.smithi017.mljnlu (mgr.14180) 1141 : cluster [DBG] pgmap v741: 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-12-06T04:13:26.634 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:26.635 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:27.093 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:27.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:27 smithi017 conmon[82019]: cluster 2023-12-06T04:13:26.051855+0000 mgr.smithi017.mljnlu (mgr.14180) 1142 : 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-12-06T04:13:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:27 smithi169 conmon[87179]: cluster 2023-12-06T04:13:26.051855+0000 mgr.smithi017.mljnlu (mgr.14180) 1142 : 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-12-06T04:13:28.094 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:28.125 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:28 smithi017 conmon[82019]: audit 2023-12-06T04:13:26.630160+0000 mgr.smithi017.mljnlu (mgr.14180) 1143 : audit [DBG] from='client.16030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:28 smithi169 conmon[87179]: audit 2023-12-06T04:13:26.630160+0000 mgr.smithi017.mljnlu (mgr.14180) 1143 : audit [DBG] from='client.16030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:29.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:29 smithi017 conmon[82019]: cluster 2023-12-06T04:13:28.052658+0000 mgr.smithi017.mljnlu (mgr.14180) 1144 : 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-12-06T04:13:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:29 smithi169 conmon[87179]: cluster 2023-12-06T04:13:28.052658+0000 mgr.smithi017.mljnlu (mgr.14180) 1144 : 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-12-06T04:13:29.827 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:29.827 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:30.242 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:31.242 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:31 smithi169 conmon[87179]: audit 2023-12-06T04:13:29.823041+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:13:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:31 smithi169 conmon[87179]: .14180) 1145 : audit [DBG] from='client.16034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:31 smithi169 conmon[87179]: cluster 2023-12-06T04:13:30.053438+0000 mgr.smithi017.mljnlu (mgr.14180) 1146 : 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-12-06T04:13:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:31 smithi017 conmon[82019]: audit 2023-12-06T04:13:29.823041+0000 mgr.smithi017.mljnlu (mgr.14180) 1145 : audit [DBG] from='client.16034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:31 smithi017 conmon[82019]: cluster 2023-12-06T04:13:30.053438+0000 mgr.smithi017.mljnlu (mgr.14180) 1146 : 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-12-06T04:13:33.041 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:33.041 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:33.388 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:33 smithi017 conmon[82019]: cluster 2023-12-06T04:13:32.054229+0000 mgr.smithi017.mljnlu (mgr.14180) 1147 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:33.389 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:33 smithi169 conmon[87179]: cluster 2023-12-06T04:13:32.054229+0000 mgr.smithi017.mljnlu (mgr.14180) 1147 : 2023-12-06T04:13:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:33 smithi169 conmon[87179]: cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:34.390 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:34.422 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:34 smithi017 conmon[82019]: audit 2023-12-06T04:13:33.037012+0000 mgr.smithi017.mljnlu (mgr.14180) 1148 : 2023-12-06T04:13:34.422 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:34 smithi017 conmon[82019]: audit [DBG] from='client.16038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:34 smithi169 conmon[87179]: audit 2023-12-06T04:13:33.037012+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:13:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:34 smithi169 conmon[87179]: 1148 : audit [DBG] from='client.16038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:35.231 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:35 smithi017 conmon[82019]: cluster 2023-12-06T04:13:34.055005+0000 2023-12-06T04:13:35.231 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:35 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1149 : cluster [DBG] pgmap v746: 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-12-06T04:13:35.499 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:35 smithi169 conmon[87179]: cluster 2023-12-06T04:13:34.055005+0000 mgr.smithi017.mljnlu (mgr.14180) 1149 : cluster 2023-12-06T04:13:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:35 smithi169 conmon[87179]: [DBG] pgmap v746: 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-12-06T04:13:36.111 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:36.111 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:36.549 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:37 smithi169 conmon[87179]: cluster 2023-12-06T04:13:36.055450+0000 mgr.smithi017.mljnlu (mgr.14180) 1150 : cluster 2023-12-06T04:13:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:37 smithi169 conmon[87179]: [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-12-06T04:13:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:37 smithi169 conmon[87179]: audit 2023-12-06T04:13:36.106109+0000 mgr.smithi017.mljnlu (mgr.14180) 1151 : audit [DBG] from='client.16042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:37.550 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:37.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:37 smithi017 conmon[82019]: cluster 2023-12-06T04:13:36.055450+0000 mgr.smithi017.mljnlu (mgr.14180) 1150 : 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-12-06T04:13:37.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:37 smithi017 conmon[82019]: audit 2023-12-06T04:13:36.106109+0000 mgr.smithi017.mljnlu (mgr.14180) 1151 : audit [DBG] from='client.16042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:39 smithi017 conmon[82019]: cluster 2023-12-06T04:13: 2023-12-06T04:13:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:39 smithi017 conmon[82019]: 38.056166+0000 mgr.smithi017.mljnlu (mgr.14180) 1152 : 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-12-06T04:13:39.344 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:39.344 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:39 smithi169 conmon[87179]: cluster 2023-12-06T04:13:38.056166+0000 mgr.smithi017.mljnlu (mgr.14180) 1152 : cluster 2023-12-06T04:13:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:39 smithi169 conmon[87179]: [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-12-06T04:13:39.798 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:40.799 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:41.403 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:41 smithi017 conmon[82019]: audit 2023-12-06T04:13:39.339225+0000 mgr.smithi017.mljnlu (mgr.14180) 1153 : audit [DBG] from='client.16046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:41.403 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:41 smithi017 conmon[82019]: cluster 2023-12-06T04:13:40.056854+0000 mgr.smithi017.mljnlu (mgr.14180) 1154 : 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-12-06T04:13:41.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:41 smithi169 conmon[87179]: audit 2023-12-06T04:13:39.339225+0000 mgr.smithi017.mljnlu (mgr.14180) 1153 : audit 2023-12-06T04:13:41.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:41 smithi169 conmon[87179]: [DBG] from='client.16046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:41.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:41 smithi169 conmon[87179]: cluster 2023-12-06T04:13:40.056854+0000 mgr.smithi017.mljnlu (mgr.14180) 1154 : 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-12-06T04:13:42.542 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:42.543 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:42.962 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:43.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:43 smithi017 conmon[82019]: cluster 2023-12-06T04:13:42.057547+0000 mgr.smithi017.mljnlu (mgr.14180) 1155 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:43 smithi169 conmon[87179]: cluster 2023-12-06T04:13:42.057547+0000 mgr.smithi017.mljnlu (mgr.14180) 1155 : cluster [DBG] 2023-12-06T04:13:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:43 smithi169 conmon[87179]: pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:43.963 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:44.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:44 smithi017 conmon[82019]: audit 2023-12-06T04:13:42.538121+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:13:44.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:44 smithi017 conmon[82019]: ) 1156 : audit [DBG] from='client.16050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:44 smithi169 conmon[87179]: audit 2023-12-06T04:13:42.538121+0000 mgr.smithi017.mljnlu (mgr.14180) 1156 : audit 2023-12-06T04:13:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:44 smithi169 conmon[87179]: [DBG] from='client.16050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:45.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:45 smithi169 conmon[87179]: cluster 2023-12-06T04:13:44.058350+0000 mgr.smithi017.mljnlu (mgr.14180) 1157 : cluster [DBG] pgmap v751: 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-12-06T04:13:45.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:45 smithi017 conmon[82019]: cluster 2023-12-06T04:13:44.058350+0000 mgr.smithi017.mljnlu (mgr.14180) 1157 : cluster [DBG] pgmap v751: 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-12-06T04:13:45.704 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:45.704 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:46.125 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:47.126 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:47 smithi169 conmon[87179]: audit 2023-12-06T04:13:45.699513+0000 mgr.smithi017.mljnlu (mgr.14180) 1158 : audit [DBG] from='client.16054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:47 smithi169 conmon[87179]: cluster 2023-12-06T04:13:46.058898+0000 mgr.smithi017.mljnlu (mgr.14180) 1159 : 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-12-06T04:13:47.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:47 smithi017 conmon[82019]: audit 2023-12-06T04:13:45.699513+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:13:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:47 smithi017 conmon[82019]: 14180) 1158 : audit [DBG] from='client.16054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:47 smithi017 conmon[82019]: cluster 2023-12-06T04:13:46.058898+0000 mgr.smithi017.mljnlu (mgr.14180) 1159 : 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-12-06T04:13:48.879 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:48.879 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:49.285 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:49 smithi169 conmon[87179]: cluster 2023-12-06T04:13:48.059805+0000 mgr.smithi017.mljnlu (mgr.14180) 1160 : 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-12-06T04:13:49.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:49 smithi017 conmon[82019]: cluster 2023-12-06T04:13:48.059805+0000 mgr.smithi017.mljnlu (mgr.14180) 1160 : 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-12-06T04:13:50.286 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:50.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:50 smithi169 conmon[87179]: audit 2023-12-06T04:13:48.873070+0000 mgr.smithi017.mljnlu (mgr.14180) 1161 : audit [DBG] 2023-12-06T04:13:50.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:50 smithi169 conmon[87179]: from='client.16058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:50.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:50 smithi017 conmon[82019]: audit 2023-12-06T04:13:48.873070+0000 mgr.smithi017.mljnlu (mgr.14180) 1161 : audit [DBG] from='client.16058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:51 smithi169 conmon[87179]: cluster 2023-12-06T04:13:50.060756+0000 mgr.smithi017.mljnlu (mgr.14180) 1162 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:51 smithi169 conmon[87179]: 2023-12-06T04:13:51.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:51 smithi017 conmon[82019]: cluster 2023-12-06T04:13:50.060756+0000 mgr.smithi017.mljnlu (mgr.14180) 1162 : 2023-12-06T04:13:51.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:51 smithi017 conmon[82019]: cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:52.000 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:52.001 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:52.445 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:53.446 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:53.477 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:53 smithi017 conmon[82019]: audit 2023-12-06T04:13:51.996388+0000 mgr.smithi017.mljnlu (mgr.14180) 1163 : audit [DBG] from='client.16062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:53.477 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:53 smithi017 conmon[82019]: cluster 2023-12-06T04:13:52.061341+0000 mgr.smithi017.mljnlu (mgr.14180) 1164 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:53 smithi169 conmon[87179]: audit 2023-12-06T04:13:51.996388+0000 mgr.smithi017.mljnlu (mgr.14180) 1163 : audit [DBG] from='client.16062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:53 smithi169 conmon[87179]: cluster 2023-12-06T04:13:52.061341+0000 mgr.smithi017.mljnlu (mgr.14180) 1164 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:55.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:54 smithi017 conmon[82019]: cluster 2023-12-06T04:13:54.062049+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:13:55.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:54 smithi017 conmon[82019]: mgr.14180) 1165 : cluster [DBG] pgmap v756: 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-12-06T04:13:55.145 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:55.145 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:54 smithi169 conmon[87179]: cluster 2023-12-06T04:13:54.062049+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:13:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:54 smithi169 conmon[87179]: mgr.14180) 1165 : cluster [DBG] pgmap v756: 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-12-06T04:13:55.508 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:56.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:55 smithi169 conmon[87179]: audit 2023-12-06T04:13:55.139942+0000 mgr.smithi017.mljnlu (mgr.14180) 1166 : audit [DBG] from='client.16066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:56.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:55 smithi017 conmon[82019]: audit 2023-12-06T04:13:55.139942+0000 mgr.smithi017.mljnlu (mgr.14180) 1166 : audit [DBG] from='client.16066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:13:56.510 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:57.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:56 smithi169 conmon[87179]: cluster 2023-12-06T04:13:56.062648+0000 mgr.smithi017.mljnlu (mgr.14180) 1167 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:57.254 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:56 smithi017 conmon[82019]: cluster 2023-12-06T04:13:56.062648+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:13:57.254 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:56 smithi017 conmon[82019]: .14180) 1167 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:58.213 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:13:58.213 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:13:58.568 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:13:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:59 smithi169 conmon[87179]: cluster 2023-12-06T04:13:58.063297+0000 mgr.smithi017.mljnlu (mgr.14180) 1168 : cluster 2023-12-06T04:13:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:13:59 smithi169 conmon[87179]: [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:13:59.568 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:13:59.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:59 smithi017 conmon[82019]: cluster 2023-12-06T04:13:58.063297+0000 2023-12-06T04:13:59.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:13:59 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1168 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:00.446 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:00 smithi017 conmon[82019]: audit 2023-12-06T04:13:58.208678+0000 mgr.smithi017.mljnlu (mgr.14180) 1169 : audit [DBG] from='client.16070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:00.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:00 smithi169 conmon[87179]: audit 2023-12-06T04:13:58.208678+0000 mgr.smithi017.mljnlu (mgr.14180) 1169 : audit [DBG] 2023-12-06T04:14:00.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:00 smithi169 conmon[87179]: from='client.16070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:01.273 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:01.273 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:01.303 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:01 smithi017 conmon[82019]: cluster 2023-12-06T04:14:00.064098+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:14:01.303 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:01 smithi017 conmon[82019]: mgr.14180) 1170 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:01.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:01 smithi169 conmon[87179]: cluster 2023-12-06T04:14:00.064098+0000 mgr.smithi017.mljnlu (mgr.14180) 1170 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:01.716 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:02.717 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:03.436 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:03 smithi017 conmon[82019]: audit 2023-12-06T04:14:01.268816+0000 mgr.smithi017.mljnlu (mgr.14180) 1171 : audit [DBG] from='client.16074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:03.436 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:03 smithi017 conmon[82019]: cluster 2023-12-06T04:14:02.064858+0000 mgr.smithi017.mljnlu (mgr.14180) 1172 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:03 smithi169 conmon[87179]: audit 2023-12-06T04:14:01.268816+0000 mgr.smithi017.mljnlu (mgr.14180) 1171 : audit [DBG] from='client.16074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:03 smithi169 conmon[87179]: cluster 2023-12-06T04:14:02.064858+0000 mgr.smithi017.mljnlu (mgr.14180) 1172 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:04.523 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:04.523 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:04.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:04 smithi169 conmon[87179]: cluster 2023-12-06T04:14:04.065633+0000 mgr.smithi017.mljnlu (mgr.14180) 1173 : cluster [DBG] pgmap v761: 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-12-06T04:14:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:04 smithi169 conmon[87179]: 2023-12-06T04:14:05.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:04 smithi017 conmon[82019]: cluster 2023-12-06T04:14:04.065633+0000 mgr.smithi017.mljnlu (mgr.14180) 1173 : cluster [DBG] pgmap v761: 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-12-06T04:14:05.978 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:05 smithi169 conmon[87179]: audit 2023-12-06T04:14:04.518393+0000 mgr.smithi017.mljnlu (mgr.14180) 1174 : audit [DBG] from='client.16078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:05 smithi017 conmon[82019]: audit 2023-12-06T04:14:04.518393+0000 mgr.smithi017.mljnlu (mgr.14180) 1174 : 2023-12-06T04:14:06.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:05 smithi017 conmon[82019]: audit [DBG] from='client.16078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:06 smithi169 conmon[87179]: cluster 2023-12-06T04:14:06.066263+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:14:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:06 smithi169 conmon[87179]: 1175 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:07.271 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:06 smithi017 conmon[82019]: cluster 2023-12-06T04:14:06.066263+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:14:07.271 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:06 smithi017 conmon[82019]: mgr.14180) 1175 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:07.677 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:07.678 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:08.128 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:09.129 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:09 smithi169 conmon[87179]: audit 2023-12-06T04:14:07.673397+0000 mgr.smithi017.mljnlu (mgr.14180) 1176 : audit [DBG] 2023-12-06T04:14:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:09 smithi169 conmon[87179]: from='client.16082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:09 smithi169 conmon[87179]: cluster 2023-12-06T04:14:08.067071+0000 mgr.smithi017.mljnlu (mgr.14180) 1177 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:09.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:09 smithi017 conmon[82019]: audit 2023-12-06T04:14:07.673397+0000 mgr.smithi017.mljnlu (mgr.14180) 1176 2023-12-06T04:14:09.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:09 smithi017 conmon[82019]: : audit [DBG] from='client.16082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:09.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:09 smithi017 conmon[82019]: cluster 2023-12-06T04:14:08.067071+0000 mgr.smithi017.mljnlu (mgr.14180) 1177 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:10.823 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:10.823 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:11.268 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:11 smithi169 conmon[87179]: cluster 2023-12-06T04:14:10.067663+0000 mgr.smithi017.mljnlu (mgr.14180) 1178 : cluster 2023-12-06T04:14:11.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:11 smithi169 conmon[87179]: [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:11.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:11 smithi017 conmon[82019]: cluster 2023-12-06T04:14:10.067663+0000 mgr.smithi017.mljnlu (mgr.14180) 1178 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:12.269 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:12 smithi169 conmon[87179]: audit 2023-12-06T04:14:10.818779+0000 mgr.smithi017.mljnlu (mgr.14180) 1179 : audit [DBG] from='client.16086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:12 smithi169 conmon[87179]: 2023-12-06T04:14:12.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:12 smithi017 conmon[82019]: audit 2023-12-06T04:14:10.818779 2023-12-06T04:14:12.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:12 smithi017 conmon[82019]: +0000 mgr.smithi017.mljnlu (mgr.14180) 1179 : audit [DBG] from='client.16086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:13 smithi169 conmon[87179]: cluster 2023-12-06T04:14:12.068416+0000 mgr.smithi017.mljnlu (mgr.14180) 1180 : cluster 2023-12-06T04:14:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:13 smithi169 conmon[87179]: [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:13.562 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:13 smithi017 conmon[82019]: cluster 2023-12-06 2023-12-06T04:14:13.563 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:13 smithi017 conmon[82019]: T04:14:12.068416+0000 mgr.smithi017.mljnlu (mgr.14180) 1180 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:13.969 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:13.969 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:14.427 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:14 smithi169 conmon[87179]: audit 2023-12-06T04:14:13.964632+0000 mgr.smithi017.mljnlu (mgr.14180) 1181 : audit [DBG] from='client.16090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:14 smithi169 conmon[87179]: cluster 2023-12-06T04:14:14.069276+0000 mgr.smithi017.mljnlu (mgr.14180) 1182 : cluster [DBG] pgmap v766: 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-12-06T04:14:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:14 smithi017 conmon[82019]: audit 2023-12-06T04:14:13.964632+0000 mgr.smithi017.mljnlu (mgr.14180) 1181 : audit [DBG] from='client.16090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:15.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:14 smithi017 conmon[82019]: cluster 2023-12-06T04:14:14.069276+0000 mgr.smithi017.mljnlu (mgr.14180) 1182 : cluster [DBG] pgmap v766: 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-12-06T04:14:15.429 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:17.173 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:17.173 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:17.384 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:17 smithi017 conmon[82019]: cluster 2023-12-06T04:14:16.069718+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:14:17.384 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:17 smithi017 conmon[82019]: 1183 : 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-12-06T04:14:17.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:17 smithi169 conmon[87179]: cluster 2023-12-06T04:14:16.069718+0000 mgr.smithi017.mljnlu (mgr.14180) 1183 : 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-12-06T04:14:17.593 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:18.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:18 smithi169 conmon[87179]: audit 2023-12-06T04:14:17.168872+0000 mgr.smithi017.mljnlu (mgr.14180) 1184 : audit [DBG] from='client.16094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:18.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:18 smithi017 conmon[82019]: audit 2023-12-06T04:14:17.168872+0000 mgr.smithi017.mljnlu (mgr.14180) 1184 : audit [DBG] from='client.16094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:18.594 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:19.434 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:19 smithi017 conmon[82019]: cluster 2023-12-06T04:14:18.070512+0000 mgr.smithi017.mljnlu (mgr.14180) 1185 : 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-12-06T04:14:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:19 smithi169 conmon[87179]: cluster 2023-12-06T04:14:18.070512+0000 mgr.smithi017.mljnlu (mgr.14180) 1185 : 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-12-06T04:14:20.330 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:20.331 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:20.747 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:21 smithi169 conmon[87179]: cluster 2023-12-06T04:14:20.071077+0000 mgr.smithi017.mljnlu (mgr.14180) 1186 : 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-12-06T04:14:21.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:21 smithi017 conmon[82019]: cluster 2023-12-06T04:14:20.071077+0000 mgr.smithi017.mljnlu (mgr.14180) 1186 : 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-12-06T04:14:21.748 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:22.474 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:22 smithi017 conmon[82019]: audit 2023-12-06T04:14 2023-12-06T04:14:22.474 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:22 smithi017 conmon[82019]: :20.325801+0000 mgr.smithi017.mljnlu (mgr.14180) 1187 : audit [DBG] from='client.16098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:22.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:22 smithi169 conmon[87179]: audit 2023-12-06T04:14:20.325801+0000 mgr.smithi017.mljnlu (mgr.14180) 1187 : audit [DBG] from='client.16098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:23.440 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:23.440 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:23.467 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:23 smithi017 conmon[82019]: cluster 2023-12-06T04:14:22.071601+0000 2023-12-06T04:14:23.467 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:23 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1188 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:23 smithi169 conmon[87179]: cluster 2023-12-06T04:14:22.071601+0000 mgr.smithi017.mljnlu (mgr.14180) 1188 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:23.909 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:24.909 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:24 smithi169 conmon[87179]: audit 2023-12-06T04:14:23.436049+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:14:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:24 smithi169 conmon[87179]: 14180) 1189 : audit [DBG] from='client.16102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:24 smithi169 conmon[87179]: cluster 2023-12-06T04:14:24.072387+0000 mgr.smithi017.mljnlu (mgr.14180) 1190 : cluster [DBG] pgmap v771: 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-12-06T04:14:25.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:24 smithi017 conmon[82019]: audit 2023-12-06T04:14:23.436049+0000 mgr.smithi017.mljnlu (mgr.14180) 1189 : audit [DBG] from='client.16102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:24 smithi017 conmon[82019]: cluster 2023-12-06T04:14:24.072387+0000 mgr.smithi017.mljnlu (mgr.14180) 1190 : cluster [DBG] pgmap v771: 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-12-06T04:14:26.661 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:26.661 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:27.082 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:27.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:27 smithi017 conmon[82019]: cluster 2023-12-06T04:14:26.072848+0000 2023-12-06T04:14:27.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:27 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1191 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 0 B/s wr, 5 op/s 2023-12-06T04:14:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:27 smithi169 conmon[87179]: cluster 2023-12-06T04:14:26.072848+0000 mgr.smithi017.mljnlu (mgr.14180) 1191 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 0 B/s wr, 5 op/s 2023-12-06T04:14:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:27 smithi169 conmon[87179]: 2023-12-06T04:14:28.083 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:28 smithi169 conmon[87179]: audit 2023-12-06T04:14:26.656636+0000 mgr.smithi017.mljnlu (mgr.14180) 1192 : 2023-12-06T04:14:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:28 smithi169 conmon[87179]: audit [DBG] from='client.16106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:28.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:28 smithi017 conmon[82019]: audit 2023-12-06T04:14:26.656636+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:14:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:28 smithi017 conmon[82019]: mgr.14180) 1192 : audit [DBG] from='client.16106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:29.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:29 smithi017 conmon[82019]: cluster 2023-12-06T04:14:28.073805+0000 mgr.smithi017.mljnlu (mgr.14180) 1193 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 47 op/s 2023-12-06T04:14:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:29 smithi169 conmon[87179]: cluster 2023-12-06T04:14:28.073805+0000 mgr.smithi017.mljnlu (mgr.14180) 1193 : cluster [DBG] 2023-12-06T04:14:29.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:29 smithi169 conmon[87179]: pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 29 KiB/s rd, 0 B/s wr, 47 op/s 2023-12-06T04:14:29.767 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:29.767 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:30.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:31.229 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:31 smithi169 conmon[87179]: audit 2023-12-06T04:14:29.762508+0000 mgr.smithi017.mljnlu (mgr.14180) 1194 : audit 2023-12-06T04:14:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:31 smithi169 conmon[87179]: [DBG] from='client.16110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:31 smithi169 conmon[87179]: cluster 2023-12-06T04:14:30.074495+0000 mgr.smithi017.mljnlu (mgr.14180) 1195 : cluster [DBG] pgmap v774: 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, 62 op/s 2023-12-06T04:14:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:31 smithi017 conmon[82019]: audit 2023-12-06T04:14:29.762508+0000 mgr.smithi017.mljnlu (mgr.14180) 1194 2023-12-06T04:14:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:31 smithi017 conmon[82019]: : audit [DBG] from='client.16110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:31.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:31 smithi017 conmon[82019]: cluster 2023-12-06T04:14:30.074495+0000 mgr.smithi017.mljnlu (mgr.14180) 1195 : cluster [DBG] pgmap v774: 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, 62 op/s 2023-12-06T04:14:32.945 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:32.946 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:33.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:33 smithi017 conmon[82019]: cluster 2023-12-06T04:14: 2023-12-06T04:14:33.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:33 smithi017 conmon[82019]: 32.075070+0000 mgr.smithi017.mljnlu (mgr.14180) 1196 : cluster [DBG] pgmap v775: 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, 62 op/s 2023-12-06T04:14:33.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:33 smithi169 conmon[87179]: cluster 2023-12-06T04:14:32.075070+0000 mgr.smithi017.mljnlu (mgr.14180) 1196 : cluster [DBG] pgmap v775: 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, 62 op/s 2023-12-06T04:14:34.385 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:34.416 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:34 smithi017 conmon[82019]: audit 2023-12-06T04:14:32.940641+0000 mgr.smithi017.mljnlu (mgr.14180) 1197 : audit [DBG] from='client.16114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:34 smithi169 conmon[87179]: audit 2023-12-06T04:14:32.940641+0000 mgr.smithi017.mljnlu (mgr.14180) 1197 : audit [DBG] from='client.16114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:34.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:34 smithi169 conmon[87179]: 2023-12-06T04:14:35.282 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:35 smithi017 conmon[82019]: cluster 2023-12-06T04:14:34.075885+0000 mgr.smithi017.mljnlu (mgr.14180) 1198 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2023-12-06T04:14:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:35 smithi169 conmon[87179]: cluster 2023-12-06T04:14:34.075885+0000 mgr.smithi017.mljnlu (mgr.14180) 1198 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 40 KiB/s rd, 0 B/s wr, 67 op/s 2023-12-06T04:14:35.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:35 smithi169 conmon[87179]: 2023-12-06T04:14:36.179 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:36.179 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:36.533 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:37 smithi169 conmon[87179]: cluster 2023-12-06T04:14:36.076351+0000 mgr.smithi017.mljnlu (mgr.14180) 1199 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2023-12-06T04:14:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:37 smithi169 conmon[87179]: 2023-12-06T04:14:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:37 smithi169 conmon[87179]: audit 2023-12-06T04:14:36.174696+0000 mgr.smithi017.mljnlu (mgr.14180) 1200 : audit [DBG] from='client.16118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:37.534 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:37.565 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:37 smithi017 conmon[82019]: cluster 2023-12-06T04:14:36.076351+0000 mgr.smithi017.mljnlu (mgr.14180) 1199 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2023-12-06T04:14:37.565 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:37 smithi017 conmon[82019]: audit 2023-12-06T04:14:36.174696+0000 mgr.smithi017.mljnlu (mgr.14180) 1200 : audit [DBG] from='client.16118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:39.246 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:39.246 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:39.440 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:39 smithi017 conmon[82019]: cluster 2023-12-06T04:14:38.077195+0000 2023-12-06T04:14:39.440 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:39 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1201 : cluster [DBG] pgmap v778: 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, 64 op/s 2023-12-06T04:14:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:39 smithi169 conmon[87179]: cluster 2023-12-06T04:14:38.077195+0000 mgr.smithi017.mljnlu (mgr.14180) 1201 : cluster [DBG] pgmap v778: 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, 64 op/s 2023-12-06T04:14:39.681 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:40.682 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:41.413 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:41 smithi017 conmon[82019]: audit 2023-12-06T04:14:39.241406+0000 mgr.smithi017.mljnlu (mgr.14180) 1202 : audit [DBG] from='client.16122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:41.413 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:41 smithi017 conmon[82019]: cluster 2023-12-06T04:14:40.077989+0000 mgr.smithi017.mljnlu (mgr.14180) 1203 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 0 B/s wr, 21 op/s 2023-12-06T04:14:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:41 smithi169 conmon[87179]: audit 2023-12-06T04:14:39.241406+0000 mgr.smithi017.mljnlu (mgr.14180) 1202 : audit [DBG] from='client.16122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:41 smithi169 conmon[87179]: 2023-12-06T04:14:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:41 smithi169 conmon[87179]: cluster 2023-12-06T04:14:40.077989+0000 mgr.smithi017.mljnlu (mgr.14180) 1203 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 0 B/s wr, 21 op/s 2023-12-06T04:14:42.437 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:42.437 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:42.844 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:43 smithi169 conmon[87179]: cluster 2023-12-06T04:14:42.078586+0000 mgr.smithi017.mljnlu (mgr.14180) 1204 : cluster [DBG] pgmap v780: 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-12-06T04:14:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:43 smithi169 conmon[87179]: 2023-12-06T04:14:43.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:43 smithi017 conmon[82019]: cluster 2023-12-06T04:14:42.078586+0000 mgr.smithi017.mljnlu (mgr.14180) 1204 : cluster [DBG] pgmap v780: 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-12-06T04:14:43.845 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:44.431 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:44 smithi017 conmon[82019]: audit 2023-12-06T04:14:42.432661+0000 mgr.smithi017.mljnlu (mgr.14180) 1205 : audit [DBG] from='client.16126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:44 smithi169 conmon[87179]: audit 2023-12-06T04:14:42.432661+0000 mgr.smithi017.mljnlu (mgr.14180) 1205 : audit 2023-12-06T04:14:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:44 smithi169 conmon[87179]: [DBG] from='client.16126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:45.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:45 smithi169 conmon[87179]: cluster 2023-12-06T04:14:44.079326+0000 mgr.smithi017.mljnlu (mgr.14180) 1206 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2023-12-06T04:14:45.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:45 smithi017 conmon[82019]: cluster 2023-12-06T04:14:44.079326+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:14:45.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:45 smithi017 conmon[82019]: 14180) 1206 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2023-12-06T04:14:45.576 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:45.577 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:46.005 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:47.007 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:47.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:47 smithi017 conmon[82019]: audit 2023-12-06T04:14:45.572585+0000 mgr.smithi017.mljnlu (mgr.14180) 1207 : audit [DBG] from='client.16130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:47 smithi017 conmon[82019]: cluster 2023-12-06T04:14:47.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:47 smithi017 conmon[82019]: 2023-12-06T04:14:46.079847+0000 mgr.smithi017.mljnlu (mgr.14180) 1208 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2023-12-06T04:14:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:47 smithi169 conmon[87179]: audit 2023-12-06T04:14:45.572585+0000 mgr.smithi017.mljnlu (mgr.14180) 1207 : audit [DBG] from='client.16130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:47 smithi169 conmon[87179]: cluster 2023-12-06T04:14:46.079847+0000 mgr.smithi017.mljnlu (mgr.14180) 1208 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 0 B/s wr, 2 op/s 2023-12-06T04:14:48.719 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:48.720 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:49.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:49.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:49 smithi169 conmon[87179]: cluster 2023-12-06T04:14:48.080545+0000 mgr.smithi017.mljnlu (mgr.14180) 1209 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 B/s wr, 1 op/s 2023-12-06T04:14:49.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:49 smithi017 conmon[82019]: cluster 2023-12-06T04:14:48.080545+0000 2023-12-06T04:14:49.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:49 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1209 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 B/s wr, 1 op/s 2023-12-06T04:14:50.154 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:50.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:50 smithi169 conmon[87179]: audit 2023-12-06T04:14:48.714419+0000 mgr.smithi017.mljnlu (mgr.14180) 1210 : audit [DBG] from='client.16134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:50.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:50 smithi017 conmon[82019]: audit 2023-12-06T04:14:48.714419+0000 mgr.smithi017.mljnlu (mgr.14180) 1210 : audit 2023-12-06T04:14:50.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:50 smithi017 conmon[82019]: [DBG] from='client.16134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:51.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:51 smithi017 conmon[82019]: cluster 2023-12-06T04:14:50.081430+0000 mgr.smithi017.mljnlu 2023-12-06T04:14:51.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:51 smithi017 conmon[82019]: (mgr.14180) 1211 : 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-12-06T04:14:51.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:51 smithi169 conmon[87179]: cluster 2023-12-06T04:14:50.081430+0000 mgr.smithi017.mljnlu (mgr.14180) 1211 : 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-12-06T04:14:51.874 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:51.874 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:52.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:53.304 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:53 smithi169 conmon[87179]: audit 2023-12-06T04:14:51.868950+0000 mgr.smithi017.mljnlu (mgr.14180) 1212 : audit [DBG] from='client.16138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:53.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:53 smithi169 conmon[87179]: cluster 2023-12-06T04:14:52.082220+0000 mgr.smithi017.mljnlu (mgr.14180) 1213 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:53.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:53 smithi017 conmon[82019]: audit 2023-12-06T04:14:51.868950+0000 mgr.smithi017.mljnlu (mgr 2023-12-06T04:14:53.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:53 smithi017 conmon[82019]: .14180) 1212 : audit [DBG] from='client.16138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:53.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:53 smithi017 conmon[82019]: cluster 2023-12-06T04:14:52.082220+0000 mgr.smithi017.mljnlu (mgr.14180) 1213 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:14:55.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:54 smithi169 conmon[87179]: cluster 2023-12-06T04:14:54.083067+0000 mgr.smithi017.mljnlu (mgr.14180) 1214 : cluster [DBG] pgmap v786: 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-12-06T04:14:55.252 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:55.252 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:55.275 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:54 smithi017 conmon[82019]: cluster 2023-12-06T04:14:54.083067+0000 mgr.smithi017.mljnlu (mgr.14180) 1214 : cluster [DBG] pgmap v786: 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-12-06T04:14:55.666 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:56.667 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:14:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:57 smithi169 conmon[87179]: audit 2023-12-06T04:14:55.248362+0000 mgr.smithi017.mljnlu (mgr.14180) 1215 : audit [DBG] from='client.16142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:57 smithi169 conmon[87179]: cluster 2023-12-06T04:14:56.083680+0000 mgr.smithi017.mljnlu (mgr.14180) 1216 : 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-12-06T04:14:57.546 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:57 smithi017 conmon[82019]: audit 2023-12-06T04:14:55.248362+0000 2023-12-06T04:14:57.546 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:57 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1215 : audit [DBG] from='client.16142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:14:57.546 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:57 smithi017 conmon[82019]: cluster 2023-12-06T04:14:56.083680+0000 mgr.smithi017.mljnlu (mgr.14180) 1216 : 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-12-06T04:14:58.500 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:14:58.500 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:14:58.918 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:14:59.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:14:59 smithi017 conmon[82019]: cluster 2023-12-06T04:14:58.084671+0000 mgr.smithi017.mljnlu (mgr.14180) 1217 : 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-12-06T04:14:59.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:14:59 smithi169 conmon[87179]: cluster 2023-12-06T04:14:58.084671+0000 mgr.smithi017.mljnlu (mgr.14180) 1217 : 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-12-06T04:14:59.920 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:00.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:00 smithi017 conmon[82019]: audit 2023-12-06T04:14: 2023-12-06T04:15:00.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:00 smithi017 conmon[82019]: 58.495589+0000 mgr.smithi017.mljnlu (mgr.14180) 1218 : audit [DBG] from='client.16146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:00.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:00 smithi169 conmon[87179]: audit 2023-12-06T04:14:58.495589+0000 mgr.smithi017.mljnlu (mgr.14180) 1218 : audit [DBG] from='client.16146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:01.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:01 smithi169 conmon[87179]: cluster 2023-12-06T04:15:00.085276+0000 mgr.smithi017.mljnlu (mgr.14180) 1219 : 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-12-06T04:15:01.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:01 smithi017 conmon[82019]: cluster 2023-12-06T04:15:00.085276+0000 mgr.smithi017.mljnlu (mgr.14180) 1219 : 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-12-06T04:15:01.625 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:01.625 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:02.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:03.083 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:03 smithi169 conmon[87179]: audit 2023-12-06T04:15:01.621131+0000 mgr.smithi017.mljnlu (mgr.14180) 1220 : audit [DBG] from='client.16150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:03.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:03 smithi169 conmon[87179]: cluster 2023-12-06T04:15:02.086034+0000 mgr.smithi017.mljnlu (mgr.14180) 1221 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:03.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:03 smithi017 conmon[82019]: audit 2023-12-06T04:15:01.621131+0000 mgr.smithi017.mljnlu (mgr.14180) 1220 : audit [DBG] from='client.16150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:03.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:03 smithi017 conmon[82019]: cluster 2023-12-06T04:15:02.086034+0000 mgr.smithi017.mljnlu (mgr.14180) 1221 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:04.792 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:04.792 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:04 smithi017 conmon[82019]: cluster 2023-12-06T04:15:04.086773+0000 mgr.smithi017.mljnlu 2023-12-06T04:15:05.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:04 smithi017 conmon[82019]: (mgr.14180) 1222 : cluster [DBG] pgmap v791: 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-12-06T04:15:05.240 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:05.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:04 smithi169 conmon[87179]: cluster 2023-12-06T04:15:04.086773+0000 mgr.smithi017.mljnlu (mgr.14180) 1222 : cluster [DBG] pgmap v791: 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-12-06T04:15:06.241 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:06.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:05 smithi169 conmon[87179]: audit 2023-12-06T04:15:04.787764+0000 mgr.smithi017.mljnlu (mgr.14180) 1223 : audit [DBG] from='client.16154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:06.272 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:05 smithi017 conmon[82019]: audit 2023-12-06T04:15:04.787764+0000 mgr.smithi017.mljnlu (mgr.14180) 1223 : audit [DBG] from='client.16154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:07.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:06 smithi017 conmon[82019]: cluster 2023-12-06T04:15:06.087341+0000 mgr.smithi017.mljnlu (mgr.14180) 1224 : 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-12-06T04:15:07.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:06 smithi169 conmon[87179]: cluster 2023-12-06T04:15:06.087341+0000 mgr.smithi017.mljnlu (mgr.14180) 1224 : 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-12-06T04:15:07.940 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:07.940 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:08.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:09.399 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:09.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:09 smithi017 conmon[82019]: audit 2023-12-06T04:15:07.935540+0000 mgr.smithi017.mljnlu (mgr.14180) 1225 : audit [DBG] 2023-12-06T04:15:09.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:09 smithi017 conmon[82019]: from='client.16158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:09.426 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:09 smithi017 conmon[82019]: cluster 2023-12-06T04:15:08.087998+0000 mgr.smithi017.mljnlu (mgr.14180) 1226 : 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-12-06T04:15:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:09 smithi169 conmon[87179]: audit 2023-12-06T04:15:07.935540+0000 mgr.smithi017.mljnlu (mgr.14180) 1225 : audit [DBG] from='client.16158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:09.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:09 smithi169 conmon[87179]: cluster 2023-12-06T04:15:08.087998+0000 mgr.smithi017.mljnlu (mgr.14180) 1226 : 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-12-06T04:15:11.110 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:11.110 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:11.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:11 smithi169 conmon[87179]: cluster 2023-12-06T04:15:10.088569+0000 mgr.smithi017.mljnlu (mgr.14180) 1227 : 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-12-06T04:15:11.503 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:11 smithi017 conmon[82019]: cluster 2023-12-06T04:15:10.088569+0000 mgr.smithi017.mljnlu (mgr.14180) 1227 : 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-12-06T04:15:11.736 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:12.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:12 smithi169 conmon[87179]: audit 2023-12-06T04:15:11.105392+0000 mgr.smithi017.mljnlu (mgr.14180) 1228 : audit [DBG] from='client.16162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:12.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:12 smithi017 conmon[82019]: audit 2023-12-06T04:15:11.105392+0000 mgr.smithi017.mljnlu (mgr.14180) 1228 : audit [DBG] from='client.16162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:12.738 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:13.472 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:13 smithi017 conmon[82019]: cluster 2023-12-06T04:15:12.089349+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:15:13.472 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:13 smithi017 conmon[82019]: ) 1229 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:13.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:13 smithi169 conmon[87179]: cluster 2023-12-06T04:15:12.089349+0000 mgr.smithi017.mljnlu (mgr.14180) 1229 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:14.464 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:14.465 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:14.900 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:15.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:14 smithi169 conmon[87179]: cluster 2023-12-06T04:15:14.090038+0000 mgr.smithi017.mljnlu (mgr.14180) 1230 : cluster [DBG] pgmap v796: 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-12-06T04:15:15.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:14 smithi017 conmon[82019]: cluster 2023-12-06T04:15:14.090038+0000 mgr.smithi017.mljnlu (mgr.14180) 1230 : cluster [DBG] pgmap v796: 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-12-06T04:15:15.901 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:16.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:15 smithi169 conmon[87179]: audit 2023-12-06T04:15:14.460266+0000 mgr.smithi017.mljnlu (mgr.14180) 1231 : audit [DBG] from='client.16166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:16.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:15 smithi017 conmon[82019]: audit 2023-12-06T04:15:14.460266+0000 mgr.smithi017.mljnlu (mgr. 2023-12-06T04:15:16.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:15 smithi017 conmon[82019]: 14180) 1231 : audit [DBG] from='client.16166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:17.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:16 smithi017 conmon[82019]: cluster 2023-12-06T04:15:16.090460+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:15:17.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:16 smithi017 conmon[82019]: ) 1232 : 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-12-06T04:15:17.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:16 smithi169 conmon[87179]: cluster 2023-12-06T04:15:16.090460+0000 mgr.smithi017.mljnlu (mgr.14180) 1232 : 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-12-06T04:15:17.639 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:17.639 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:18.051 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:19.052 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:19 smithi169 conmon[87179]: audit 2023-12-06T04:15:17.634519+0000 mgr.smithi017.mljnlu (mgr.14180) 1233 : audit [DBG] from='client.16170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:19.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:19 smithi169 conmon[87179]: cluster 2023-12-06T04:15:18.091334+0000 mgr.smithi017.mljnlu (mgr.14180) 1234 : 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-12-06T04:15:19.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:19 smithi017 conmon[82019]: audit 2023-12-06T04:15:17.634519+0000 2023-12-06T04:15:19.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:19 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1233 : audit [DBG] from='client.16170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:19.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:19 smithi017 conmon[82019]: cluster 2023-12-06T04:15:18.091334+0000 mgr.smithi017.mljnlu (mgr.14180) 1234 : 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-12-06T04:15:20.741 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:20.741 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:21.195 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:21.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:21 smithi169 conmon[87179]: cluster 2023-12-06T04:15:20.091908+0000 mgr.smithi017.mljnlu (mgr.14180) 1235 : 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-12-06T04:15:21.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:21 smithi017 conmon[82019]: cluster 2023-12-06T04:15:20.091908+0000 mgr.smithi017.mljnlu (mgr.14180) 1235 : 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-12-06T04:15:22.196 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:22.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:22 smithi169 conmon[87179]: audit 2023-12-06T04:15:20.736866+0000 mgr.smithi017.mljnlu (mgr.14180) 1236 : audit [DBG] from='client.16174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:22.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:22 smithi017 conmon[82019]: audit 2023-12-06T04:15:20.736866+0000 mgr.smithi017.mljnlu (mgr.14180) 1236 : audit [DBG] 2023-12-06T04:15:22.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:22 smithi017 conmon[82019]: from='client.16174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:23.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:23 smithi169 conmon[87179]: cluster 2023-12-06T04:15:22.092537+0000 mgr.smithi017.mljnlu (mgr.14180) 1237 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:23.519 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:23 smithi017 conmon[82019]: cluster 2023-12-06T04:15:22.092537+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:15:23.520 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:23 smithi017 conmon[82019]: ) 1237 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:23.913 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:23.913 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:24.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:24 smithi169 conmon[87179]: audit 2023-12-06T04:15:23.908905+0000 mgr.smithi017.mljnlu (mgr.14180) 1238 : audit [DBG] from='client.16178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:24 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:15:25.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:24 smithi169 conmon[87179]: 15:24.093231+0000 mgr.smithi017.mljnlu (mgr.14180) 1239 : cluster [DBG] pgmap v801: 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-12-06T04:15:25.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:24 smithi017 conmon[82019]: audit 2023-12-06T04:15:23.908905+0000 mgr.smithi017.mljnlu (mgr.14180) 1238 : audit [DBG] from='client.16178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:25.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:24 smithi017 conmon[82019]: cluster 2023-12-06T04:15:24.093231+0000 mgr.smithi017.mljnlu (mgr.14180) 1239 : cluster [DBG] pgmap v801: 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-12-06T04:15:25.345 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:27.164 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:27.164 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:27.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:27 smithi169 conmon[87179]: cluster 2023-12-06T04:15:26.093880+0000 mgr.smithi017.mljnlu (mgr.14180) 1240 : 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-12-06T04:15:27.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:27 smithi017 conmon[82019]: cluster 2023-12-06T04:15:26.093880+0000 mgr.smithi017.mljnlu (mgr.14180) 1240 : 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-12-06T04:15:27.597 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:28.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:28 smithi169 conmon[87179]: audit 2023-12-06T04:15:27.159825+0000 mgr.smithi017.mljnlu (mgr.14180) 1241 : audit [DBG] from='client.16182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:28.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:28 smithi017 conmon[82019]: audit 2023-12-06T04:15:27.159825+0000 2023-12-06T04:15:28.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:28 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1241 : audit [DBG] from='client.16182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:28.598 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:29.433 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:29 smithi017 conmon[82019]: cluster 2023-12-06T04:15:28.094730+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:15:29.433 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:29 smithi017 conmon[82019]: mgr.14180) 1242 : 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-12-06T04:15:29.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:29 smithi169 conmon[87179]: cluster 2023-12-06T04:15:28.094730+0000 mgr.smithi017.mljnlu (mgr.14180) 1242 : 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-12-06T04:15:30.311 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:30.311 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:30.752 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:31.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:31 smithi169 conmon[87179]: cluster 2023-12-06T04:15:30.095469+0000 mgr.smithi017.mljnlu (mgr.14180) 1243 : 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-12-06T04:15:31.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:31 smithi017 conmon[82019]: cluster 2023-12-06T04:15:30.095469+0000 mgr.smithi017.mljnlu (mgr.14180) 1243 : 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-12-06T04:15:31.753 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:32.468 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:32 smithi017 conmon[82019]: audit 2023-12-06T04:15:30.306338+0000 mgr.smithi017.mljnlu (mgr.14180) 1244 : audit [DBG] from='client.16186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:32.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:32 smithi169 conmon[87179]: audit 2023-12-06T04:15:30.306338+0000 mgr.smithi017.mljnlu (mgr.14180) 1244 : audit [DBG] from='client.16186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:33.456 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:33.457 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:33.487 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:33 smithi017 conmon[82019]: cluster 2023-12-06T04:15:32.096103+0000 mgr.smithi017.mljnlu (mgr.14180) 1245 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:33.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:33 smithi169 conmon[87179]: cluster 2023-12-06T04:15:32.096103+0000 mgr.smithi017.mljnlu (mgr.14180) 1245 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:33.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:34.913 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:34 smithi169 conmon[87179]: audit 2023-12-06T04:15:33.451758+0000 mgr.smithi017.mljnlu (mgr.14180) 1246 : audit [DBG] from='client.16190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:34 smithi169 conmon[87179]: 2023-12-06T04:15:35.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:34 smithi169 conmon[87179]: cluster 2023-12-06T04:15:34.096976+0000 mgr.smithi017.mljnlu (mgr.14180) 1247 : cluster [DBG] pgmap v806: 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-12-06T04:15:35.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:34 smithi017 conmon[82019]: audit 2023-12-06T04:15:33.451758+0000 mgr.smithi017.mljnlu (mgr.14180) 1246 : audit [DBG] from='client.16190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:35.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:34 smithi017 conmon[82019]: cluster 2023-12-06T04:15:34.096976+0000 mgr.smithi017.mljnlu (mgr.14180) 1247 : cluster [DBG] pgmap v806: 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-12-06T04:15:36.705 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:36.705 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:37.164 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:37.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:37 smithi169 conmon[87179]: cluster 2023-12-06T04:15:36.097452+0000 mgr.smithi017.mljnlu (mgr.14180) 1248 : 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-12-06T04:15:37.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:37 smithi017 conmon[82019]: cluster 2023-12-06T04:15:36.097452+0000 mgr.smithi017.mljnlu (mgr.14180) 1248 : 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-12-06T04:15:38.165 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:38.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:38 smithi169 conmon[87179]: audit 2023-12-06T04:15:36.699713+0000 mgr.smithi017.mljnlu (mgr.14180) 1249 : audit [DBG] from='client.16194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:38.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:38 smithi017 conmon[82019]: audit 2023-12-06T04:15:36.699713+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:15:38.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:38 smithi017 conmon[82019]: 1249 : audit [DBG] from='client.16194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:39.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:39 smithi017 conmon[82019]: cluster 2023-12-06T04:15:38.098348+0000 mgr.smithi017.mljnlu (mgr.14180) 1250 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:39 smithi169 conmon[87179]: cluster 2023-12-06T04:15:38.098348+0000 mgr.smithi017.mljnlu (mgr.14180) 1250 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:39.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:39 smithi169 conmon[87179]: 2023-12-06T04:15:39.877 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:39.877 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:40.315 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:41.316 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:41 smithi169 conmon[87179]: audit 2023-12-06T04:15:39.872545+0000 mgr.smithi017.mljnlu (mgr.14180) 1251 : audit [DBG] from='client.16198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:41 smithi169 conmon[87179]: cluster 2023-12-06T04: 2023-12-06T04:15:41.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:41 smithi169 conmon[87179]: 15:40.098903+0000 mgr.smithi017.mljnlu (mgr.14180) 1252 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:41.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:41 smithi017 conmon[82019]: audit 2023-12-06T04:15:39.872545+0000 mgr.smithi017.mljnlu (mgr.14180) 1251 : audit [DBG] from='client.16198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:41.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:41 smithi017 conmon[82019]: cluster 2023-12-06T04:15:40.098903+0000 mgr.smithi017.mljnlu (mgr.14180) 1252 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:43.026 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:43.026 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:43.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:43 smithi017 conmon[82019]: cluster 2023-12-06T04:15:42.099456+0000 mgr.smithi017.mljnlu (mgr.14180) 1253 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:43.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:43.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:43 smithi169 conmon[87179]: cluster 2023-12-06T04:15:42.099456+0000 mgr.smithi017.mljnlu (mgr.14180) 1253 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:44.491 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:44.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:44 smithi169 conmon[87179]: audit 2023-12-06T04:15:43.021473+0000 mgr.smithi017.mljnlu (mgr.14180) 1254 : audit [DBG] from='client.16202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:44.523 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:44 smithi017 conmon[82019]: audit 2023-12-06T04:15:43.021473+0000 mgr.smithi017.mljnlu (mgr.14180) 1254 : audit [DBG] 2023-12-06T04:15:44.523 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:44 smithi017 conmon[82019]: from='client.16202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:45 smithi017 conmon[82019]: cluster 2023-12-06T04:15:44 2023-12-06T04:15:45.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:45 smithi017 conmon[82019]: .100487+0000 mgr.smithi017.mljnlu (mgr.14180) 1255 : cluster [DBG] pgmap v811: 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-12-06T04:15:45.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:45 smithi169 conmon[87179]: cluster 2023-12-06T04:15:44.100487+0000 mgr.smithi017.mljnlu (mgr.14180) 1255 : cluster [DBG] pgmap v811: 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-12-06T04:15:46.203 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:46.204 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:07:10.900314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.iosija on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-iosija\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.iosija\nDeploy daemon haproxy.nfs.foo.smithi169.iosija ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:05:18Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:05:55Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:06:33Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.237902Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.bkgldh on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-bkgldh\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.bkgldh\nDeploy daemon haproxy.nfs.foo.smithi017.bkgldh ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:07:47Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:08:25Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:09:02Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:09:40.240024Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.hpgudn on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -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.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:46.646 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:47 smithi169 conmon[87179]: cluster 2023-12-06T04:15:46.100965+0000 mgr.smithi017.mljnlu (mgr.14180) 1256 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:47.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:47 smithi169 conmon[87179]: audit 2023-12-06T04:15:46.632228+0000 mon.smithi017 (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.xnsghe"}]: dispatch 2023-12-06T04:15:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:47 smithi017 conmon[82019]: cluster 2023-12-06T04:15:46.100965+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:15:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:47 smithi017 conmon[82019]: 1256 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:15:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:47 smithi017 conmon[82019]: audit 2023-12-06T04:15:46.632228+0000 mon.smithi017 2023-12-06T04:15:47.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:47 smithi017 conmon[82019]: (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi017.xnsghe"}]: dispatch 2023-12-06T04:15:47.648 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:48.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: audit 2023-12-06T04:15:46.199487+0000 mgr.smithi017.mljnlu (mgr.14180) 1257 : audit [DBG] from='client.16206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cephadm 2023-12-06T04:15:46.631770+0000 mgr.smithi017.mljnlu (mgr.14180) 1258 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Traceback (most recent call last): 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:15:48.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: yield (conn, connr) 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: code, '\n'.join(err))) 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docke 2023-12-06T04:15:48.502 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: r.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cephadm 2023-12-06T04:15:46.631929+0000 mgr.smithi017.mljnlu (mgr.14180) 1259 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cephadm 2023-12-06T04:15:46.632897+0000 mgr.smithi017.mljnlu (mgr.14180) 1260 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.503 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cephadm 2023-12-06T04:15:46.634198+0000 mgr.smithi017.mljnlu (mgr.14180) 1261 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cephadm 2023-12-06T04:15:46.635216+0000 mgr.smithi017.mljnlu (mgr.14180) 1262 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cluster 2023-12-06T04:15:46.636032+0000 mgr.smithi017.mljnlu (mgr.14180) 1263 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: cluster 2023-12-06T04:15:47.172463+0000 mon.smithi017 (mon.0) 783 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:15:48.504 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:48 smithi169 conmon[87179]: audit 2023-12-06T04:15:47.379291+0000 mon.smithi017 (mon.0) 784 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:15:48.531 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: audit 2023-12-06T04:15:46.199487+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:15:48.531 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 1257 : audit [DBG] from='client.16206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cephadm 2023-12-06T04:15:46.631770+0000 mgr.smithi017.mljnlu (mgr.14180) 1258 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Traceback (most recent call last): 2023-12-06T04:15:48.532 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: yield (conn, connr) 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: code, '\n'.join(err))) 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SI 2023-12-06T04:15:48.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: GTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cephadm 2023-12-06T04:15:46.631929+0000 mgr.smithi017.mljnlu (mgr.14180) 1259 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cephadm 2023-12-06T04:15:46.632897+0000 mgr.smithi017.mljnlu (mgr.14180) 1260 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: /bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: Deploy daemon haproxy.nfs.foo.smithi017.xnsghe ... 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:13:54Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:14:31Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: stat: stderr time="2023-12-06T04:15:09Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 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=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-06T04:15:48.534 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cephadm 2023-12-06T04:15:46.634198+0000 mgr.smithi017.mljnlu (mgr.14180) 1261 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cephadm 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 2023-12-06T04:15:46.635216+0000 mgr.smithi017.mljnlu (mgr.14180) 1262 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cluster 2023-12-06T04:15:46.636032+0000 mgr.smithi017.mljnlu ( 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: mgr.14180) 1263 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: cluster 2023 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: -12-06T04:15: 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 47.172463+0000 mon.smithi017 (mon.0) 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: 783 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: audit 2023 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: -12-06T04:15 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: :47.379291+0000 mon.smithi017 (mon.0 2023-12-06T04:15:48.535 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:48 smithi017 conmon[82019]: ) 784 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:15:49.339 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:49.339 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.632807Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\nDeploy daemon haproxy.nfs.foo.smithi017.xnsghe ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:13:54Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:14:31Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:15:09Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.634121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:15:46.635141Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:49.795 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:50.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:50 smithi169 conmon[87179]: cluster 2023-12-06T04:15:48.636849+0000 mgr.smithi017.mljnlu (mgr.14180) 1264 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:50.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:50 smithi017 conmon[82019]: cluster 2023-12-06T04:15:48.636849+0000 mgr.smithi017.mljnlu (mgr.14180) 1264 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:50.796 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:51.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:51 smithi169 conmon[87179]: audit 2023-12-06T04:15:49.334149+0000 mgr.smithi017.mljnlu (mgr.14180) 1265 : audit [DBG] from='client.16210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:51.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:51 smithi017 conmon[82019]: audit 2023-12-06T04:15 2023-12-06T04:15:51.533 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:51 smithi017 conmon[82019]: :49.334149+0000 mgr.smithi017.mljnlu (mgr.14180) 1265 : audit [DBG] from='client.16210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:52 smithi169 conmon[87179]: cluster 2023-12-06T04:15:50.637712+0000 mgr.smithi017.mljnlu (mgr.14180) 1266 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:52 smithi169 conmon[87179]: audit 2023-12-06T04:15:52.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:52 smithi169 conmon[87179]: 2023-12-06T04:15:51.660798+0000 mon.smithi017 (mon.0) 785 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:15:52.521 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:52.521 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.632807Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\nDeploy daemon haproxy.nfs.foo.smithi017.xnsghe ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:13:54Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:14:31Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:15:09Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.634121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:15:46.635141Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:52.550 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:52 smithi017 conmon[82019]: cluster 2023-12-06T04:15:50.637712+0000 2023-12-06T04:15:52.550 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:52 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1266 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:52.550 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:52 smithi017 conmon[82019]: audit 2023-12-06T04:15:51.660798+0000 mon.smithi017 (mon.0) 785 : audit [INF] from='mgr.14180 172.21.15.17:0/2436466638' entity='mgr.smithi017.mljnlu' 2023-12-06T04:15:52.962 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:53.963 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:54.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:54 smithi017 conmon[82019]: audit 2023-12-06T04:15:52.516534+0000 mgr.smithi017.mljnlu (mgr.14180) 1267 : audit [DBG] from='client.16214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:54.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:54 smithi017 conmon[82019]: cluster 2023-12-06T04:15:52.638470+0000 mgr.smithi017.mljnlu (mgr.14180) 1268 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-06T04:15:54.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:54 smithi169 conmon[87179]: audit 2023-12-06T04:15:52.516534+0000 mgr.smithi017.mljnlu (mgr.14180) 1267 : audit [DBG] from='client.16214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:54.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:54 smithi169 conmon[87179]: cluster 2023-12-06T04:15:52.638470+0000 mgr.smithi017.mljnlu (mgr.14180) 1268 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-06T04:15:55.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:55 smithi169 conmon[87179]: cluster 2023-12-06T04:15:54.639442+0000 mgr.smithi017.mljnlu (mgr.14180) 1269 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:55.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:55 smithi017 conmon[82019]: cluster 2023-12-06T04:15:54.639442+0000 mgr.smithi017.mljnlu 2023-12-06T04:15:55.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:55 smithi017 conmon[82019]: (mgr.14180) 1269 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:55.699 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:55.700 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.632807Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\nDeploy daemon haproxy.nfs.foo.smithi017.xnsghe ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:13:54Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:14:31Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:15:09Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.634121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:15:46.635141Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:56.216 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:15:56.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:56 smithi169 conmon[87179]: audit 2023-12-06T04:15:55.695038+0000 mgr.smithi017.mljnlu (mgr.14180) 1270 : audit [DBG] from='client.16218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:56.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:56 smithi017 conmon[82019]: audit 2023-12-06T04:15:55.695038+0000 2023-12-06T04:15:56.569 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:56 smithi017 conmon[82019]: mgr.smithi017.mljnlu (mgr.14180) 1270 : audit [DBG] from='client.16218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:15:57.217 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:15:57.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:57 smithi169 conmon[87179]: cluster 2023-12-06T04:15:56.640148+0000 mgr.smithi017.mljnlu (mgr.14180) 1271 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:57.568 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:57 smithi017 conmon[82019]: cluster 2023-12-06T04:15:56.640148+0000 mgr.smithi017.mljnlu (mgr.14180) 1271 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2023-12-06T04:15:58.959 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:15:58.959 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.632807Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\nDeploy daemon haproxy.nfs.foo.smithi017.xnsghe ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:13:54Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:14:31Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:15:09Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.634121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:15:46.635141Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:15:59.379 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:16:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:59 smithi169 conmon[87179]: cluster 2023-12-06T04:15:58.641059+0000 mgr.smithi017.mljnlu (mgr.14180) 1272 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:16:00.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:15:59 smithi169 conmon[87179]: audit 2023-12-06T04:15:58.955081+0000 mgr.smithi017.mljnlu (mgr.14180) 1273 : audit [DBG] from='client.16222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:16:00.318 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:59 smithi017 conmon[82019]: cluster 2023-12-06T04:15:58.641059+0000 mgr.smithi017.mljnlu (mgr.14180) 1272 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:16:00.319 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:15:59 smithi017 conmon[82019]: audit 2023-12-06T04:15:58.955081+0000 mgr.smithi017.mljnlu (mgr.14180) 1273 : audit [DBG] from='client.16222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:16:00.380 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d03fca4f35d43f61b4679936aef7bd2f01cced0b shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 419dd438-93ea-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-12-06T04:16:02.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:01 smithi017 conmon[82019]: cluster 2023-12-06T04:16:00.641683+0000 mgr.smithi017.mljnlu (mgr.14180) 1274 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:16:02.123 INFO:teuthology.orchestra.run.smithi017.stdout: 2023-12-06T04:16:02.123 INFO:teuthology.orchestra.run.smithi017.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-06T03:49:27.789959Z", "last_refresh": "2023-12-06T04:10:47.422058Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-06T03:49:23.015392Z", "last_refresh": "2023-12-06T04:10:43.095141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-06T03:49:25.714948Z", "last_refresh": "2023-12-06T04:10:47.422202Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-06T04:09:40.241287Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.jxwpav on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:13:17.265884Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi169.rhslec on smithi169: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi169-rhslec\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi169.rhslec\nDeploy daemon haproxy.nfs.foo.smithi169.rhslec ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:11:24Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:02Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:12:39Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi169 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.632807Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi017.xnsghe on smithi017: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi017-xnsghe\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\n/bin/podman: stderr Error: error inspecting object: no such container ceph-419dd438-93ea-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi017.xnsghe\nDeploy daemon haproxy.nfs.foo.smithi017.xnsghe ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-12-06T04:13:54Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:14:31Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-12-06T04:15:09Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi017 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-06T04:15:46.634121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi017.qkfpbh on smithi017: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-06T04:15:46.635141Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi169.lznsdk on smithi169: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.17/16"}, "status": {"created": "2023-12-06T03:54:07.972959Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.17/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-06T03:49:21.751784Z", "last_refresh": "2023-12-06T04:10:43.095285Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:50:37.431620Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi017:172.21.15.17=smithi017", "smithi169:172.21.15.169=smithi169"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-06T03:50:37.428445Z", "last_refresh": "2023-12-06T04:10:43.095359Z", "running": 2, "size": 2}}, {"events": ["2023-12-06T03:54:07.971780Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-06T03:54:07.968017Z", "last_refresh": "2023-12-06T04:10:47.422695Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-06T03:49:26.759587Z", "last_refresh": "2023-12-06T04:10:43.095425Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-06T03:51:14.330253Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-06T03:51:14.326221Z", "last_refresh": "2023-12-06T04:10:43.095489Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-06T03:49:24.549102Z", "last_refresh": "2023-12-06T04:10:47.422325Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-12-06T03:54:03.761754Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-12-06T03:54:13.344003Z", "last_refresh": "2023-12-06T04:10:43.095737Z", "ports": [8800], "running": 2, "size": 2}}] 2023-12-06T04:16:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:01 smithi169 conmon[87179]: cluster 2023-12-06T04:16:00.641683+0000 mgr.smithi017.mljnlu (mgr.14180) 1274 : 2023-12-06T04:16:02.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:01 smithi169 conmon[87179]: cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-12-06T04:16:02.543 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-06T04:16:02.543 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_d03fca4f35d43f61b4679936aef7bd2f01cced0b/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-12-06T04:16:02.673 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=3063b3a30aba4217a687d9662deb5063 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_d03fca4f35d43f61b4679936aef7bd2f01cced0b/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-12-06T04:16:02.675 DEBUG:teuthology.run_tasks:Unwinding manager vip 2023-12-06T04:16:02.687 INFO:tasks.vip:Removing 10.0.15.17 (and any VIPs) on smithi017.front.sepia.ceph.com iface ens1f0... 2023-12-06T04:16:02.687 DEBUG:teuthology.orchestra.run.smithi017:> sudo ip addr del 10.0.15.17/16 dev ens1f0 2023-12-06T04:16:02.736 DEBUG:teuthology.orchestra.run.smithi017:> sudo ip addr del 10.0.31.17/16 dev ens1f0 2023-12-06T04:16:02.801 INFO:teuthology.orchestra.run.smithi017.stderr:RTNETLINK answers: Cannot assign requested address 2023-12-06T04:16:02.802 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-12-06T04:16:02.803 INFO:tasks.vip:Removing 10.0.15.169 (and any VIPs) on smithi169.front.sepia.ceph.com iface enp3s0f1... 2023-12-06T04:16:02.803 DEBUG:teuthology.orchestra.run.smithi169:> sudo ip addr del 10.0.15.169/16 dev enp3s0f1 2023-12-06T04:16:02.852 DEBUG:teuthology.orchestra.run.smithi169:> sudo ip addr del 10.0.31.17/16 dev enp3s0f1 2023-12-06T04:16:02.877 INFO:teuthology.orchestra.run.smithi169.stderr:RTNETLINK answers: Cannot assign requested address 2023-12-06T04:16:02.879 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-12-06T04:16:02.879 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2023-12-06T04:16:02.890 INFO:tasks.cephadm:Teardown begin 2023-12-06T04:16:02.890 DEBUG:teuthology.orchestra.run.smithi017:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-06T04:16:02.918 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-06T04:16:02.945 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2023-12-06T04:16:02.946 DEBUG:teuthology.orchestra.run.smithi017:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-12-06T04:16:02.974 DEBUG:teuthology.orchestra.run.smithi169:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-12-06T04:16:03.002 INFO:tasks.cephadm:Stopping all daemons... 2023-12-06T04:16:03.002 INFO:tasks.cephadm.mon.smithi017:Stopping mon.smithi017... 2023-12-06T04:16:03.002 DEBUG:teuthology.orchestra.run.smithi017:> sudo systemctl stop ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017 2023-12-06T04:16:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:02 smithi017 conmon[82019]: audit 2023-12-06T04:16:02.118961+0000 mgr.smithi017.mljnlu (mgr.14180) 2023-12-06T04:16:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:02 smithi017 conmon[82019]: 1275 : audit [DBG] from='client.16226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:16:03.069 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:03 smithi017 systemd[1]: Stopping Ceph mon.smithi017 for 419dd438-93ea-11ee-95a2-87774f69a715... 2023-12-06T04:16:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:02 smithi169 conmon[87179]: audit 2023-12-06T04:16:02.118961+0000 mgr.smithi017.mljnlu (mgr.14180 2023-12-06T04:16:03.250 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:02 smithi169 conmon[87179]: ) 1275 : audit [DBG] from='client.16226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-06T04:16:03.397 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:03 smithi017 bash[273935]: Error: no container with name or ID "ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon.smithi017" found: no such container 2023-12-06T04:16:03.721 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:03 smithi017 conmon[82019]: debug 2023-12-06T04:16:03.395+0000 7f460109f700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi017 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-06T04:16:03.722 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:03 smithi017 conmon[82019]: debug 2023-12-06T04:16:03.395+0000 7f460109f700 -1 mon.smithi017@0(leader) e2 *** Got Signal Terminated *** 2023-12-06T04:16:04.068 INFO:journalctl@ceph.mon.smithi017.smithi017.stdout:Dec 06 04:16:03 smithi017 bash[274048]: ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon-smithi017 2023-12-06T04:16:04.115 DEBUG:teuthology.orchestra.run.smithi017:> sudo pkill -f 'journalctl -f -n 0 -u ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi017.service' 2023-12-06T04:16:04.166 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-06T04:16:04.166 INFO:tasks.cephadm.mon.smithi017:Stopped mon.smithi017 2023-12-06T04:16:04.166 INFO:tasks.cephadm.mon.smithi169:Stopping mon.smithi169... 2023-12-06T04:16:04.166 DEBUG:teuthology.orchestra.run.smithi169:> sudo systemctl stop ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi169 2023-12-06T04:16:04.500 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:04 smithi169 systemd[1]: Stopping Ceph mon.smithi169 for 419dd438-93ea-11ee-95a2-87774f69a715... 2023-12-06T04:16:04.501 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:04 smithi169 bash[116970]: Error: no container with name or ID "ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon.smithi169" found: no such container 2023-12-06T04:16:04.906 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:04 smithi169 conmon[87179]: debug 2023-12-06T04:16:04.542+0000 7fcfc3f39700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi169 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-06T04:16:04.907 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:04 smithi169 conmon[87179]: debug 2023-12-06T04:16:04.542+0000 7fcfc3f39700 -1 mon.smithi169@1(peon) e2 *** Got Signal Terminated *** 2023-12-06T04:16:05.245 INFO:journalctl@ceph.mon.smithi169.smithi169.stdout:Dec 06 04:16:04 smithi169 bash[117083]: ceph-419dd438-93ea-11ee-95a2-87774f69a715-mon-smithi169 2023-12-06T04:16:05.252 DEBUG:teuthology.orchestra.run.smithi169:> sudo pkill -f 'journalctl -f -n 0 -u ceph-419dd438-93ea-11ee-95a2-87774f69a715@mon.smithi169.service' 2023-12-06T04:16:05.302 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-06T04:16:05.302 INFO:tasks.cephadm.mon.smithi169:Stopped mon.smithi169 2023-12-06T04:16:05.303 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 419dd438-93ea-11ee-95a2-87774f69a715 --force --keep-logs 2023-12-06T04:17:04.184 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 419dd438-93ea-11ee-95a2-87774f69a715 --force --keep-logs 2023-12-06T04:17:47.745 DEBUG:teuthology.orchestra.run.smithi017:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-06T04:17:47.783 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-06T04:17:47.810 INFO:tasks.cephadm:Archiving crash dumps... 2023-12-06T04:17:47.813 DEBUG:teuthology.misc:Transferring archived files from smithi017:/var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/ubuntu@smithi017.front.sepia.ceph.com/crash 2023-12-06T04:17:47.814 DEBUG:teuthology.orchestra.run.smithi017:> sudo tar c -f - -C /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash -- . 2023-12-06T04:17:47.863 INFO:teuthology.orchestra.run.smithi017.stderr:tar: /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash: Cannot open: No such file or directory 2023-12-06T04:17:47.863 INFO:teuthology.orchestra.run.smithi017.stderr:tar: Error is not recoverable: exiting now 2023-12-06T04:17:47.865 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/ubuntu@smithi169.front.sepia.ceph.com/crash 2023-12-06T04:17:47.866 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash -- . 2023-12-06T04:17:47.910 INFO:teuthology.orchestra.run.smithi169.stderr:tar: /var/lib/ceph/419dd438-93ea-11ee-95a2-87774f69a715/crash: Cannot open: No such file or directory 2023-12-06T04:17:47.910 INFO:teuthology.orchestra.run.smithi169.stderr:tar: Error is not recoverable: exiting now 2023-12-06T04:17:47.911 INFO:tasks.cephadm:Checking cluster log for badness... 2023-12-06T04:17:47.912 DEBUG:teuthology.orchestra.run.smithi017:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2023-12-06T04:17:47.940 INFO:teuthology.orchestra.run.smithi017.stderr:grep: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph.log: No such file or directory 2023-12-06T04:17:47.942 INFO:tasks.cephadm:Compressing logs... 2023-12-06T04:17:47.943 DEBUG:teuthology.orchestra.run.smithi017:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2023-12-06T04:17:47.985 DEBUG:teuthology.orchestra.run.smithi169:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2023-12-06T04:17:48.010 INFO:teuthology.orchestra.run.smithi169.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log 2023-12-06T04:17:48.010 INFO:teuthology.orchestra.run.smithi169.stderr:: No such file or directory 2023-12-06T04:17:48.011 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi169.rlrcud.log 2023-12-06T04:17:48.011 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.4.log 2023-12-06T04:17:48.011 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi169.rlrcud.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi169.log 2023-12-06T04:17:48.011 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.6.log 2023-12-06T04:17:48.011 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi169.sfqslp.log 2023-12-06T04:17:48.013 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi169.log: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.0.log 2023-12-06T04:17:48.013 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi169.sfqslp.log: 72.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi169.sfqslp.log.gz 2023-12-06T04:17:48.014 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.2.log 2023-12-06T04:17:48.014 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi017.mljnlu.log 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.7.log 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi017.wiorko.log 2023-12-06T04:17:48.015 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi017.mljnlu.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.3.log 2023-12-06T04:17:48.016 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.7.log: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi017.wiorko.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.1.log 2023-12-06T04:17:48.016 INFO:teuthology.orchestra.run.smithi017.stderr: 74.5% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi017.wiorko.log.gz 2023-12-06T04:17:48.016 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.5.log 2023-12-06T04:17:48.016 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi017.log 2023-12-06T04:17:48.018 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.2.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log.gz 2023-12-06T04:17:48.018 INFO:teuthology.orchestra.run.smithi169.stderr: 93.2% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi169.rlrcud.log.gz 2023-12-06T04:17:48.019 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.5.log: /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi017.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2023-12-06T04:17:48.019 INFO:teuthology.orchestra.run.smithi169.stderr: 90.5% -- replaced with /var/log/ceph/cephadm.log.gz 2023-12-06T04:17:48.020 INFO:teuthology.orchestra.run.smithi017.stderr: 92.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-volume.log.gz 2023-12-06T04:17:48.050 INFO:teuthology.orchestra.run.smithi017.stderr:/var/log/ceph/cephadm.log: 93.5% -- replaced with /var/log/ceph/cephadm.log.gz 2023-12-06T04:17:48.316 INFO:teuthology.orchestra.run.smithi017.stderr: 89.8% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mgr.smithi017.mljnlu.log.gz 2023-12-06T04:17:48.371 INFO:teuthology.orchestra.run.smithi169.stderr: 92.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi169.log.gz 2023-12-06T04:17:48.981 INFO:teuthology.orchestra.run.smithi017.stderr: 93.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.7.log.gz 2023-12-06T04:17:49.000 INFO:teuthology.orchestra.run.smithi017.stderr: 93.4% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.5.log.gz 2023-12-06T04:17:49.034 INFO:teuthology.orchestra.run.smithi169.stderr: 93.2% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.2.log.gz 2023-12-06T04:17:49.060 INFO:teuthology.orchestra.run.smithi169.stderr: 93.3% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.6.log.gz 2023-12-06T04:17:49.111 INFO:teuthology.orchestra.run.smithi017.stderr: 90.6% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-mon.smithi017.log.gz 2023-12-06T04:17:49.116 INFO:teuthology.orchestra.run.smithi169.stderr: 93.7% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.4.log.gz 2023-12-06T04:17:49.186 INFO:teuthology.orchestra.run.smithi169.stderr: 93.5% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.0.log.gz 2023-12-06T04:17:49.188 INFO:teuthology.orchestra.run.smithi169.stderr: 2023-12-06T04:17:49.188 INFO:teuthology.orchestra.run.smithi169.stderr:real 0m1.189s 2023-12-06T04:17:49.188 INFO:teuthology.orchestra.run.smithi169.stderr:user 0m4.539s 2023-12-06T04:17:49.188 INFO:teuthology.orchestra.run.smithi169.stderr:sys 0m0.213s 2023-12-06T04:17:49.300 INFO:teuthology.orchestra.run.smithi017.stderr: 93.5% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.3.log.gz 2023-12-06T04:17:49.367 INFO:teuthology.orchestra.run.smithi017.stderr: 93.2% -- replaced with /var/log/ceph/419dd438-93ea-11ee-95a2-87774f69a715/ceph-osd.1.log.gz 2023-12-06T04:17:49.369 INFO:teuthology.orchestra.run.smithi017.stderr: 2023-12-06T04:17:49.369 INFO:teuthology.orchestra.run.smithi017.stderr:real 0m1.371s 2023-12-06T04:17:49.370 INFO:teuthology.orchestra.run.smithi017.stderr:user 0m5.858s 2023-12-06T04:17:49.370 INFO:teuthology.orchestra.run.smithi017.stderr:sys 0m0.200s 2023-12-06T04:17:49.370 INFO:tasks.cephadm:Archiving logs... 2023-12-06T04:17:49.370 DEBUG:teuthology.misc:Transferring archived files from smithi017:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/ubuntu@smithi017.front.sepia.ceph.com/log 2023-12-06T04:17:49.371 DEBUG:teuthology.orchestra.run.smithi017:> sudo tar c -f - -C /var/log/ceph -- . 2023-12-06T04:17:50.274 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/ubuntu@smithi169.front.sepia.ceph.com/log 2023-12-06T04:17:50.275 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/log/ceph -- . 2023-12-06T04:17:51.022 INFO:tasks.cephadm:Removing cluster... 2023-12-06T04:17:51.022 DEBUG:teuthology.orchestra.run.smithi017:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 419dd438-93ea-11ee-95a2-87774f69a715 --force 2023-12-06T04:17:51.746 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 419dd438-93ea-11ee-95a2-87774f69a715 --force 2023-12-06T04:17:52.463 INFO:tasks.cephadm:Removing cephadm ... 2023-12-06T04:17:52.463 DEBUG:teuthology.orchestra.run.smithi017:> rm -rf /home/ubuntu/cephtest/cephadm 2023-12-06T04:17:52.480 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf /home/ubuntu/cephtest/cephadm 2023-12-06T04:17:52.495 INFO:tasks.cephadm:Teardown complete 2023-12-06T04:17:52.496 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2023-12-06T04:17:52.507 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi017:/dev/vg_nvme/lv_1... 2023-12-06T04:17:52.507 DEBUG:teuthology.orchestra.run.smithi017:> sudo nvme disconnect -n lv_1 2023-12-06T04:17:52.651 INFO:teuthology.orchestra.run.smithi017.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-12-06T04:17:52.652 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:52.653 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi017:/dev/vg_nvme/lv_2... 2023-12-06T04:17:52.653 DEBUG:teuthology.orchestra.run.smithi017:> sudo nvme disconnect -n lv_2 2023-12-06T04:17:52.795 INFO:teuthology.orchestra.run.smithi017.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-12-06T04:17:52.796 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:52.797 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi017:/dev/vg_nvme/lv_3... 2023-12-06T04:17:52.797 DEBUG:teuthology.orchestra.run.smithi017:> sudo nvme disconnect -n lv_3 2023-12-06T04:17:52.925 INFO:teuthology.orchestra.run.smithi017.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-12-06T04:17:52.926 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:52.927 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi017:/dev/vg_nvme/lv_4... 2023-12-06T04:17:52.927 DEBUG:teuthology.orchestra.run.smithi017:> sudo nvme disconnect -n lv_4 2023-12-06T04:17:53.067 INFO:teuthology.orchestra.run.smithi017.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-12-06T04:17:53.068 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.069 DEBUG:teuthology.orchestra.run.smithi017:> set -ex 2023-12-06T04:17:53.069 DEBUG:teuthology.orchestra.run.smithi017:> sudo dd of=/scratch_devs 2023-12-06T04:17:53.094 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi169:/dev/vg_nvme/lv_1... 2023-12-06T04:17:53.094 DEBUG:teuthology.orchestra.run.smithi169:> sudo nvme disconnect -n lv_1 2023-12-06T04:17:53.226 INFO:teuthology.orchestra.run.smithi169.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-12-06T04:17:53.228 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.229 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi169:/dev/vg_nvme/lv_2... 2023-12-06T04:17:53.229 DEBUG:teuthology.orchestra.run.smithi169:> sudo nvme disconnect -n lv_2 2023-12-06T04:17:53.349 INFO:teuthology.orchestra.run.smithi169.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-12-06T04:17:53.350 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.351 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi169:/dev/vg_nvme/lv_3... 2023-12-06T04:17:53.351 DEBUG:teuthology.orchestra.run.smithi169:> sudo nvme disconnect -n lv_3 2023-12-06T04:17:53.472 INFO:teuthology.orchestra.run.smithi169.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-12-06T04:17:53.474 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.474 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi169:/dev/vg_nvme/lv_4... 2023-12-06T04:17:53.474 DEBUG:teuthology.orchestra.run.smithi169:> sudo nvme disconnect -n lv_4 2023-12-06T04:17:53.603 INFO:teuthology.orchestra.run.smithi169.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-12-06T04:17:53.604 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.605 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2023-12-06T04:17:53.605 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/scratch_devs 2023-12-06T04:17:53.629 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-12-06T04:17:53.639 INFO:teuthology.task.clock:Checking final clock skew... 2023-12-06T04:17:53.640 DEBUG:teuthology.orchestra.run.smithi017:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-06T04:17:53.643 DEBUG:teuthology.orchestra.run.smithi169:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-06T04:17:53.656 INFO:teuthology.orchestra.run.smithi017.stderr:bash: ntpq: command not found 2023-12-06T04:17:53.661 INFO:teuthology.orchestra.run.smithi017.stdout:210 Number of sources = 4 2023-12-06T04:17:53.661 INFO:teuthology.orchestra.run.smithi017.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-06T04:17:53.661 INFO:teuthology.orchestra.run.smithi017.stdout:=============================================================================== 2023-12-06T04:17:53.662 INFO:teuthology.orchestra.run.smithi017.stdout:^+ hv01.front.sepia.ceph.com 2 7 377 126 +661us[ +655us] +/- 94ms 2023-12-06T04:17:53.662 INFO:teuthology.orchestra.run.smithi017.stdout:^* hv02.front.sepia.ceph.com 3 7 377 64 -514us[ -520us] +/- 74ms 2023-12-06T04:17:53.662 INFO:teuthology.orchestra.run.smithi017.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 63 +53us[ +53us] +/- 69ms 2023-12-06T04:17:53.662 INFO:teuthology.orchestra.run.smithi017.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T04:17:53.684 INFO:teuthology.orchestra.run.smithi169.stderr:bash: ntpq: command not found 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:210 Number of sources = 4 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:=============================================================================== 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 62 +654us[ +654us] +/- 95ms 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:^* hv02.front.sepia.ceph.com 3 6 377 62 -549us[ -550us] +/- 74ms 2023-12-06T04:17:53.688 INFO:teuthology.orchestra.run.smithi169.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 61 +62us[ +62us] +/- 69ms 2023-12-06T04:17:53.689 INFO:teuthology.orchestra.run.smithi169.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2023-12-06T04:17:53.689 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-12-06T04:17:53.706 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-12-06T04:17:53.707 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-12-06T04:17:53.717 DEBUG:teuthology.orchestra.run.smithi017:> 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-12-06T04:17:53.822 DEBUG:teuthology.orchestra.run.smithi169:> 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-12-06T04:17:53.909 DEBUG:teuthology.orchestra.run.smithi017:> 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-12-06T04:17:53.939 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.940 DEBUG:teuthology.orchestra.run.smithi169:> 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-12-06T04:17:53.969 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:53.970 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-12-06T04:17:53.980 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-12-06T04:17:53.990 INFO:teuthology.task.internal:Duration was 2432.652004 seconds 2023-12-06T04:17:53.991 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-12-06T04:17:54.003 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-12-06T04:17:54.004 DEBUG:teuthology.orchestra.run.smithi017:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-06T04:17:54.006 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-06T04:17:54.050 INFO:teuthology.orchestra.run.smithi017.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-06T04:17:54.053 INFO:teuthology.orchestra.run.smithi169.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-06T04:17:54.329 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-12-06T04:17:54.330 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi017.front.sepia.ceph.com 2023-12-06T04:17:54.330 DEBUG:teuthology.orchestra.run.smithi017:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-06T04:17:54.350 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi169.front.sepia.ceph.com 2023-12-06T04:17:54.350 DEBUG:teuthology.orchestra.run.smithi169:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-06T04:17:54.369 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-12-06T04:17:54.369 DEBUG:teuthology.orchestra.run.smithi017:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-06T04:17:54.393 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-06T04:17:54.466 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-12-06T04:17:54.466 DEBUG:teuthology.orchestra.run.smithi017:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-06T04:17:54.469 DEBUG:teuthology.orchestra.run.smithi169:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-06T04:17:54.634 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-12-06T04:17:54.713 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-12-06T04:17:54.714 DEBUG:teuthology.orchestra.run.smithi017:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-06T04:17:54.742 DEBUG:teuthology.orchestra.run.smithi169:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-06T04:17:54.769 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-12-06T04:17:54.786 DEBUG:teuthology.orchestra.run.smithi017:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-06T04:17:54.792 DEBUG:teuthology.orchestra.run.smithi169:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-06T04:17:54.814 INFO:teuthology.orchestra.run.smithi017.stdout:kernel.core_pattern = core 2023-12-06T04:17:54.836 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = core 2023-12-06T04:17:54.850 DEBUG:teuthology.orchestra.run.smithi017:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-06T04:17:54.882 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:54.883 DEBUG:teuthology.orchestra.run.smithi169:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-06T04:17:54.905 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-06T04:17:54.905 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-12-06T04:17:54.919 INFO:teuthology.task.internal:Transferring archived files... 2023-12-06T04:17:54.920 DEBUG:teuthology.misc:Transferring archived files from smithi017:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/smithi017 2023-12-06T04:17:54.921 DEBUG:teuthology.orchestra.run.smithi017:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-06T04:17:54.968 DEBUG:teuthology.misc:Transferring archived files from smithi169:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695/remote/smithi169 2023-12-06T04:17:54.969 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-06T04:17:55.008 INFO:teuthology.task.internal:Removing archive directory... 2023-12-06T04:17:55.008 DEBUG:teuthology.orchestra.run.smithi017:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-06T04:17:55.011 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-06T04:17:55.059 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-12-06T04:17:55.072 INFO:teuthology.task.internal:Not uploading archives. 2023-12-06T04:17:55.072 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-12-06T04:17:55.090 INFO:teuthology.task.internal:Tidying up after the test... 2023-12-06T04:17:55.090 DEBUG:teuthology.orchestra.run.smithi017:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-06T04:17:55.092 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-06T04:17:55.105 INFO:teuthology.orchestra.run.smithi017.stdout: 262153 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 6 04:17 /home/ubuntu/cephtest 2023-12-06T04:17:55.113 INFO:teuthology.orchestra.run.smithi169.stdout: 262153 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 6 04:17 /home/ubuntu/cephtest 2023-12-06T04:17:55.114 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-12-06T04:17:55.126 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-12-06T04:17:55.149 INFO:teuthology.nuke:Checking targets against current locks 2023-12-06T04:17:55.178 DEBUG:teuthology.nuke:shortname: smithi017 2023-12-06T04:17:55.179 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-06T04:17:55.202 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi017.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695', '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-12-06 03:29:18.481611', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBF2QeUCvS6HRExqvNFwj8Z1id/I9Fem+3RCzrXSpVAxtaOnvdlglHOPZxhK1QgPdIgdJKVgezDtqhpuJGfYqoKI='} 2023-12-06T04:17:55.205 DEBUG:teuthology.nuke:shortname: smithi169 2023-12-06T04:17:55.205 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-06T04:17:55.224 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi169.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-05_19:00:15-rados-wip-yuri6-testing-2023-12-05-0753-pacific-distro-default-smithi/7478695', '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-12-06 03:29:18.483104', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCa8AC+wUp+lngiSuyTyY7Z9FQoPq50V2t8Wgx4HtOvEvMFQNcNUZ9fKX77TVUgPHLpX+i+y9wSjMI9r9CPD7GQ='} 2023-12-06T04:17:55.250 INFO:teuthology.orchestra.console.smithi017:Power off 2023-12-06T04:17:55.251 DEBUG:teuthology.orchestra.console.smithi017:pexpect command: ipmitool -H smithi017.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-06T04:17:55.279 DEBUG:teuthology.orchestra.console.smithi017:power off output: Chassis Power Control: Down/Off 2023-12-06T04:17:55.280 DEBUG:teuthology.orchestra.console.smithi017:pexpect command: ipmitool -H smithi017.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:17:55.297 INFO:teuthology.orchestra.console.smithi169:Power off 2023-12-06T04:17:55.298 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-06T04:17:55.308 DEBUG:teuthology.orchestra.console.smithi017:check power output: Chassis Power is on 2023-12-06T04:17:55.321 DEBUG:teuthology.orchestra.console.smithi169:power off output: Chassis Power Control: Down/Off 2023-12-06T04:17:55.321 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:17:55.345 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is on 2023-12-06T04:17:59.309 DEBUG:teuthology.orchestra.console.smithi017:pexpect command: ipmitool -H smithi017.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:17:59.346 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:17:59.423 DEBUG:teuthology.orchestra.console.smithi017:check power output: Chassis Power is on 2023-12-06T04:17:59.457 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is on 2023-12-06T04:18:03.426 DEBUG:teuthology.orchestra.console.smithi017:pexpect command: ipmitool -H smithi017.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:18:03.461 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:18:03.539 DEBUG:teuthology.orchestra.console.smithi017:check power output: Chassis Power is off 2023-12-06T04:18:03.573 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is on 2023-12-06T04:18:03.640 INFO:teuthology.orchestra.console.smithi017:Power off completed 2023-12-06T04:18:07.576 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-06T04:18:07.687 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is off 2023-12-06T04:18:07.788 INFO:teuthology.orchestra.console.smithi169:Power off completed 2023-12-06T04:18:07.892 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: 2432.6520042419434 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=3063b3a30aba4217a687d9662deb5063 status: fail success: false 2023-12-06T04:18:07.892 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-06T04:18:07.993 INFO:teuthology.run:FAIL